尝试通过 composer 加载 dompdf lib 时,我遇到了一个非常烦人的错误。
致命错误:require_once():无法打开所需的“dompdf_config.inc.php”(include_path='.:/usr/local/Cellar/php54/5.4.15/lib/php')
我可以告诉我的 php 配置确定加载了 DOM 扩展
这是测试代码
require 'vendor/autoload.php';
require_once("dompdf_config.inc.php");
$html =
'<html><body>'.
'<p>Hello World!</p>'.
'</body></html>';
$dompdf = new DOMPDF();
$dompdf->load_html($html);
$dompdf->render();
$dompdf->stream("hello_world.pdf");
我通过composer安装了dompdf:
我错过了什么?