ヘッダーを介して acrobat にエクスポートする代わりに、PrinceXML からサーバー (新しい PDF ファイル) に PDF の結果を書き込もうとしています。以下のコードは、ブラウザーに結果を表示します。
require_once("../library/Prince/prince.php");
$princeSettings = $this->getInvokeArg('bootstrap') >getOption('prince');
$prince = new Prince($princeSettings['path']);
$prince->setHTML(true);
$result = $prince->convert_string_to_passthru($this->htmlView);
$fp = fopen("./files/reports/report.pdf", "w");
fwrite($fp, $result);
fclose($fp);