我有一個用HTML/PHP編寫的訂單確認模板。PHP HTML/PHP到PDF文件
如何在這種情況下生成訂單確認PDF?
我對如何做到這一點有了一個想法,但不知道如何甚至不知道如何搜索才能實現它,這使得它變得更加困難。
$orders = array(
'900101',
'900102',
'900103',
'900104'
);
foreach ($order as $id) {
// I need to visit oa_template.php?id=$id and save the contents as a PDF,
// but I don't quite understand the simplest method to do so.
//
// contents of oa_template.php?id=$id -> $id.pdf
}
這樣做的最簡單的方法的任何例子將是偉大的,甚至是一個指向什麼功能在PHP等我正在尋找。
在此先感謝。
污垢最簡單和可能不會工作,無論如何:'file_put_contents(file_get_contents(「http://example.com/oa_template.php?id=$id」,「$ id.pdf」) );' – 2014-09-24 18:51:06
DomPDF,mPDF,tcPDF ...有很多圖書館可以幫助你做到這一點,如果你只是谷歌 – 2014-09-24 18:54:28