我正在使用dompdf和twig
我取得了一些成功 how to make dompdf handle twig page
但是我无法使用加载程序使用文件系统加载模板
给出
$twig = new Twig_Environment($loader, array(
'cache' => '/path/to/compilation_cache',
));
我想把这上面的加载器称为
$loader = new Twig_Loader_Filesystem('templates');
然而这不起作用
如果我将装载机改为
$loader = new Twig_Loader_String();
它只呈现页面名称
所以在上面提到的页面上 - 如何添加加载程序来显示模板?
提前谢谢
更多信息
使用Slim Framework但我不认为这是一个问题
有这些行
$loader = new Twig_Loader_String();
dompdf有效但只是呈现页面名称
$loader = new Twig_Loader_Filesystem('/home/sites/******/public_html/templates');
然后我得到
Fatal error: Call to undefined method DOMText::getAttribute() in /home/sites/******/app/vendor/dompdf/dompdf/include/cellmap.cls.php on line 437
困惑 - 使用slim和twig为什么dompdf不接受html作为另一页here建议?