在mutli页面上显示时出现DomPDF错误

时间:2013-08-13 19:59:30

标签: php dompdf

我的导出到PDF功能一直在游泳,直到导出的项目变得很长。

    $cv_html = '
<!DOCTYPE HTML>
<table width="600px">
    <thead>
        <tr>
            <td colspan="2">
                <h1>Cv</h1>
            </td>
            <td colspan="4">
                <h2>'.$user_details['name'].'</h2>
            </td>

        </tr>

        <tr>
            <td colspan="2">
            </td>
            <td colspan="4" class="textright">

                <br>
                '.$user_details['address1'].'<br>
                '.$user_details['address2'].'<br>
                '.$user_details['city'].'<br>
                '.$user_details['county'].'<br>
                '.$user_details['postcode'].'<br>
                '.$user_details['mobile'].'
            </td>

        </tr>
    </thead>
    <tbody>

        <tr class="">
            <td class=""><br></td>
        </tr>

';  

/* Return getInvoices for EXPORT */


foreach ($ukapr->getCVsection() as $row) { 
    $hash = $row['hash'];



$cv_html .= '<tr  bgcolor="#2D9484" class="head white">
            <td colspan="3" class="white">
                '.$row['sectionname'].'
            </td>
        </tr>';



    if($ukapr->getCVrow($hash) !== null) { 
            foreach ($ukapr->getCVrow($hash) as $cvrow) {

    $cv_html .= '<tr   class="">

                <p>'.$cvrow['cvbody'].'</p>

        </tr>';

        }
    }


 }



    $cv_html .= '</tbody>
</table>

<style>

//Lots of css here

</style>
';



$ukapr->redirect('http://ukapr.co.uk/members/export_cv.php');

如果“

',它会导出。$ cvrow ['cvbody']。'

”很小,但如果它很长,说400字,它就会吐出这个错误:< p>

注意:未定义的偏移量:第559行/home/ukapr/public_html/dompdf/include/cellmap.cls.php中的3 致命错误:在第560行的/home/ukapr/public_html/dompdf/include/cellmap.cls.php中的非对象上调用成员函数get_id()

非常感谢任何帮助。

0 个答案:

没有答案