我已经创建了一个测试页面来使用 Prince xml 进行测试,但是这段代码似乎不起作用。
索引.php
require_once("prince.php");
$prince = new Prince('www1.must.edu.ph/tts/prince/Engine/bin/prince.exe');
$prince->setHTML(true);
$html = file_get_contents("reportHeader.html");
$ret = $prince->convert_string_to_file($html,'www1.must.edu.ph/tts/prince/Engine/bin/pink.pdf');
echo $html;
if($ret)
echo "converted";
else
echo "not";
每当我访问该页面时,都没有错误.. 它只显示回显的 $html 和'not'..