香港專業教育學院創建了一個測試頁面使用XML王子測試但是這個代碼似乎並沒有工作。王子XML似乎沒有工作
的index.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和 '不' ..
什麼錯誤? – Raptor
@ShivanRaptor多數民衆贊成在問題..它不顯示任何錯誤..它只會回聲不.. – jim
語法不是在線提供,但我認爲'convert_string_to_file'是問題 - 它只能寫入本地PDF,並且您正在嘗試寫入URL。 – halfer