使用 tcpdf Libary 覆盖 pdf 文件
我正在尝试使用 TCPDF 开源 Libay 编写 pdf 文件。
我使用下面的代码..
$html = <<<EOD
$prod
EOD;
$pdf->writeHTMLCell($w=0, $h=0, $x='', $y='', $html, $border=0, $ln=1, $fill=0, $reseth=true, $align='', $autopadding=true);
$pdf->Output('pricepdf.pdf', 'FD');
我已经转储了 $html,没关系。
现在,问题是写入pdf文件,我无法写入文件。也没有显示错误。 有一点,我应该澄清的是,给定文件夹中已存在同名文件。
我想要的是,每次运行脚本时都要覆盖“pricepdf.pdf”文件,
请指导我,这是覆盖问题吗?或者其他什么东西造成了问题?我被困在这个点上...
I am trying to write pdf file using TCPDF open source liberay.
i use following code..
$html = <<<EOD
$prod
EOD;
$pdf->writeHTMLCell($w=0, $h=0, $x='', $y='', $html, $border=0, $ln=1, $fill=0, $reseth=true, $align='', $autopadding=true);
$pdf->Output('pricepdf.pdf', 'FD');
I have dumped $html, and its okay.
now, the problem is with writing pdf file, I can't write the file .either no error is displayed.
Onething, i should clear that, a file with same name is already exists in the given folder.
What i want is, to ovewrite 'pricepdf.pdf' file everytime, i run the script
Please guide me regarding this, Is this overwrite problem? or something else is creating problem? I am stuck at the point...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果脚本无法覆盖该文件,那么您可以检查文件是否存在并将其删除。
打开错误显示以查看文件访问是否存在问题。
If the script is not able to overwrite the file then you could check whether file exists and remove it.
Turn on errors display to see if there is a problem with access to the file.