没有chmod 0777的mpdf downlaod的路径

时间:2018-12-03 10:37:49

标签: php pdf download mpdf

当我想用mpdf下载pdf时卡住了。

这是我的下载路径代码:

$filename = 'test'.'.pdf';
$filename = strtolower($filename);
$path = 'temp/'. $filename; 

if(file_exists($path))
    @unlink($path);

$mpdf = new mPDF('', 'A4', 0); 
$mpdf->WriteHTML($html);
$mpdf->Output($path, 'F');

chmod($path, 0777);

我不断收到unable to create output file: temp\test.php

是否有其他方法可以在没有chmod的情况下进行下载?
因为我无法将文件夹权限设置为0777

0 个答案:

没有答案