用Dompdf库生成的PDF填充了临时文件夹

时间:2019-05-12 03:16:41

标签: php pdf dompdf

我目前正在使用dompdf库生成一些pdf,但是每次生成pdf时,我的temp文件夹中都会填充此文件以及与之相关的图像。我正在尝试取消链接或删除pdf及其生成的任何临时文件,但以下代码未提供期望的结果。有谁知道在这种情况下我还能做什么? 我正在使用PHP,并已使用composer安装了该库。

pdf代码:

    // reference the Dompdf namespace
use Dompdf\Dompdf;

// instantiate and use the dompdf class
$dompdf = new Dompdf();
//$dompdf->loadHtml('hello world');
$dompdf->set_option('isHtml5ParserEnabled', true);
$dompdf->set_option('isRemoteEnabled', true);
$dompdf -> loadHtml($html);

// (Optional) Setup the paper size and orientation
$dompdf->setPaper('A4', 'portrait');

// Render the HTML as PDF
$dompdf->render();

// Output the generated PDF to Browser
$dompdf->stream();
unlink($dompdf);

0 个答案:

没有答案