douxun4173 2015-05-11 02:30 采纳率: 0%
浏览 338
已采纳

如何从php文件中获取多页pdf输出?

I used the following code but getting the error as "fatal error allowed memory size of bytes exhausted (tried to allocate bytes)".

include 'mpdf60/mpdf.php';
ob_clean(); 
$abc=new mPDF();
$temp=//some html code
$final=$temp;//.
$abc->WriteHTML($final);
$abc->Output();
exit();

My output having bunch of records. its not getting all the records on the pdf. How can I do it?

  • 写回答

1条回答 默认 最新

  • doufei6456 2015-05-11 02:38
    关注

    The message : fatal error allowed memory size of bytes exhausted

    is telling you to increase the memory you can do it directly in your script

    ini_set('memory_limit', '-1');
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
编辑
预览

报告相同问题?

手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部