문제

I am using mpdf to generate pdf in Zend Framework, but when i create object of mpdf its not creating. When i am using it in simple core php then its work fine. Please provide me a solution. here is my code:

    $html ='<table border="1" style="border-collapse:collapse;">';
    for($i=0;$i<100;$i++){
    $html .='<tr>
        <td style="height:50px">
            hi
        </td>
        <td>
            hello
        </td>
    </tr>';
    }
    $html .='</table>';
    include("mpdf/mpdf.php");
    $mpdf=new mPDF('c','A4','','',32,25,27,25,16,13);
    $mpdf->setHeader('WELCOME TO MY WORLD') ;
    $mpdf->setFooter('{PAGENO}') ;
    $mpdf->WriteHTML($html,2);
    $mpdf->Output('mpdf.pdf','I');
    exit;

$mpdf=new mPDF(); is not working. Why?

도움이 되었습니까?

해결책

You should check the path for mpdf files and it's libraries. If still you are getting any error just report here.

다른 팁

Don't use include in zend framework, namespace use to activate mpdf, then filename and function name should be same.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top