dompdf 无法从我的网站页面生成 pdf。但是,我已经保存了页面并将其上传为简单的静态 html 文件,并且成功了!
所以,我不知道问题出在 url 上,还是其他问题。这是我得到的错误:
警告:require_once(/home/o110334/public_html/dompdf/include/firephp.cls.php) [function.require-once]:无法打开流:/home/o110334/public_html/dompdf/dompdf_config 中没有这样的文件或目录.inc.php 在第 194 行
致命错误:require_once() [function.require]:无法打开所需的“/home/o110334/public_html/dompdf/include/firephp.cls.php”(include_path='.:/usr/lib/php:/usr/local /lib/php') 在第 194 行的 /home/o110334/public_html/dompdf/dompdf_config.inc.php
这是代码:
$file = "admin/store/orders/45/invoice/print"; // doesn't work
//$file = "invoice_sample2.html"; //it works (same web page, but stored in a html file)
$dompdf = new DOMPDF();
$dompdf->load_html_file($file);
$dompdf->render();
$dompdf->stream("sample.pdf");