-1
我正在使用捆綁psliwa pdfbundle併成功生成pdf,但我不知道如何將pdf保存在服務器上,並能夠在mysql數據庫中生成生成pdf的路徑。生成pdf包
有人幫我嗎?使用Symfony2謝謝。
我正在使用捆綁psliwa pdfbundle併成功生成pdf,但我不知道如何將pdf保存在服務器上,並能夠在mysql數據庫中生成生成pdf的路徑。生成pdf包
有人幫我嗎?使用Symfony2謝謝。
在文檔https://github.com/psliwa/PHPPdf#parsing中,您會發現如何將廣告輸出PDF呈現給用戶。
這是由
//$documentXml and $stylesheetXml are strings contains XML documents, $stylesheetXml is optional
$content = $facade->render($documentXml, $stylesheetXml);
header('Content-Type: application/pdf');
echo $content;
如果您想將PDF保存爲你只是有文件系統中的文件做
//$documentXml and $stylesheetXml are strings contains XML documents, $stylesheetXml is optional
$content = $facade->render($documentXml, $stylesheetXml);
$filename = '/path/to/the/file.pdf';
file_put_contents($filename, $content);
你可以找到的功能的file_get_contents的文檔進行在http://www.php.net/manual/en/function.file-put-contents.php
但你的問題與捆綁本身沒有關係。這是一個普遍的問題,關於如何保存PHP中的文件,以及如何做到這一點可以很容易地發現與搜索引擎,如Google