(適用於 Windows 的指南。不適用於 Mac 或 Linux)
(圖片來源)
在 PHP 中將 HTML 轉換為 PDF 的方法不只一種。您可以使用Dompdf或Mpdf;但是,這兩個庫的執行方式有所不同。
注意:本文中並未包含所有解決方案。
要使用這兩個函式庫,您將需要 Composer。
我也在文章中展示了討論為什麼使用 Dompdf 時有時無法開啟 PDF 的程式碼。
Hello World'; // instantiate and use the dompdf class $dompdf = new Dompdf(); $dompdf->loadHtml($content); // (Optional) Setup the paper size and orientation $dompdf->setPaper('A4', 'landscape'); // Render the HTML as PDF $dompdf->render(); ob_end_clean(); // Output the generated PDF to Browser $dompdf->stream(); ?>
使用此程式碼,即可下載 PDF。
WriteHTML('Hello world! Hi
'); $mpdf->Output(); ?>
使用此程式碼,當您導覽至檔案時,PDF 將在瀏覽器中開啟 (範例:localhost/test1.php)
免責聲明: 提供的所有資源部分來自互聯網,如果有侵犯您的版權或其他權益,請說明詳細緣由並提供版權或權益證明然後發到郵箱:[email protected] 我們會在第一時間內為您處理。
Copyright© 2022 湘ICP备2022001581号-3