目前,我正在使用dompdf
生成PDF但它不会渲染超过10页,每当我尝试超过10页时它返回空白页并给出以下错误。
致命错误:Allowed memory size of 33554432 bytes exhausted (tried to allocate 2358 bytes) in /home/my_file_path/dompdf/vendor/dompdf/dompdf/lib/Cpdf.php on line 4927
以下是使用dompdf
生成pdf的PHP脚本
<?php
require '../dompdf/vendor/autoload.php';
// reference the Dompdf namespace
use Dompdf\Dompdf;
// instantiate and use the dompdf class
$dompdf = new Dompdf();
//$custom_labels=ob_get_flush();
$dompdf->loadHtml($custom_labels);
// (Optional) Setup the paper size and orientation
$dompdf->setPaper('A4', 'portrait');
// Render the HTML as PDF
$dompdf->render();
echo "<pre>";print_r($custom_labels);
exit();
// Output the generated PDF to Browser
// $dompdf->stream();
// save file to location
$output = $dompdf->output();
$customLabel = "../admin/pdf/label/custom_".$orderComplete[0].".pdf";
if(!empty($orderComplete))
{
file_put_contents($customLabel, $output);
$relPath[] = $customLabel;
}
?>
你必须在这里增加内存限制。
如果您可以访问php.ini
,则可以更改以下参数
memory_limit = 64M;
或者您可以尝试仅在开始时添加此脚本来更改该脚本。
ini_set('memory_limit', '64M');