我從原始二進制數據創建一個PDF文件,它的工作完美,但由於我在PHP文件中定義的標題,它會提示用戶「保存」文件或「打開」 。有沒有什麼辦法可以將文件保存在本地服務器http://localhost/pdf
?將pdf保存到本地服務器
下面是我在我的網頁
header("Pragma: public");
header("Expires: 0");
header("Cache-Control: must-revalidate, post-check=0, pre-check=0");
header("Cache-Control: public");
header("Content-Description: File Transfer");
header("Content-Type: application/pdf");
header("Content-Disposition: attachment; filename=$filename");
header("Content-Transfer-Encoding: binary");
where function generate_pdf()? – 2015-06-05 04:14:04
@skjulikaka:由於問題不是關於使用PHP創建PDF數據,而是關於如何保存超出範圍的數據。我的代碼示例中的第一行還明確指出「***讓我們說**你有一個'generate_pdf()'函數來創建PDF *」。但我相信你可以通過[搜索]找到合適的答案(http://stackoverflow.com/search?q=generate+%5Bpdf%5D+using+%5Bphp%5D)「使用[標籤:pdf]生成[標籤:pdf]標籤:PHP]「或沿着這些線。 – Simon 2015-06-05 07:20:10
是的,我遇到了很多''生成php內容到pdf'庫,但它仍然不能接受,因爲我的語言是不理解與pdf :(,,我現在瘋狂(); – 2015-06-05 09:35:28