这是我的php代码
<?php
require_once ("dompdf/autoload.inc.php");
use Dompdf\Dompdf;
$pdf = new Dompdf();
$html = file_get_contents('sample.html');
$pdf->loadHtml($html);
$pdf->setPaper('A4','portrait');
$pdf->render();
$pdf->stream();
?>
sample.html是我的html文件。打开pdf文件时,出现错误“无法加载PDF文档”。有人可以帮助我吗?
答案 0 :(得分:0)
在实时服务器上工作时,它具有请求超时期限,如果DOMPDF在时间内没有给出响应,则显示该页面。
您需要将php.ini或文件放置在服务器上创建pdf的文件中,而在php.ini中则必须更改此文件
upload_max_filesize = 2M ;or whatever size you want
max_execution_time = 60 ; also, higher if you must - sets the maximum time in seconds