如何使用 PHP 建立 PDF安裝所需庫:PHP 7.1 以上版本、mPDF 庫。建立 PDF 檔案:實例化 mPDF 對象,寫入 HTML 內容,輸出 PDF 檔案。實戰案例:產生使用者發票,包括客戶資訊、發票資訊、商品清單和總金額。
使用PHP 建立PDF
#所需工具:
安裝mPDF 庫:
透過Composer 安裝mPDF:composer require mpdf/mpdf
建立PDF 檔案:
<?php require_once __DIR__ . '/vendor/autoload.php'; $mpdf = new \mPDF(); $mpdf->WriteHTML('<h1>Hello, PDF!</h1>'); $mpdf->Output('hello-pdf.pdf', 'D');
實戰案例:產生使用者發票
<?php require_once __DIR__ . '/vendor/autoload.php'; $data = [ 'user' => [ 'name' => 'John Doe', 'address' => '123 Main Street', 'city' => 'Anytown', 'zip' => '12345' ], 'invoice' => [ 'number' => 'INV-001', 'date' => '2023-03-08', 'items' => [ [ 'name' => 'Item 1', 'price' => 10, 'quantity' => 2 ], [ 'name' => 'Item 2', 'price' => 15, 'quantity' => 1 ] ] ] ]; $mpdf = new \mPDF(); $mpdf->WriteHTML(render_invoice($data)); $mpdf->Output('invoice.pdf', 'D'); function render_invoice($data) { $html = <<<HTML <h1>Invoice #{$data['invoice']['number']}</h1> <p>Date: {$data['invoice']['date']}</p> <hr> <p><strong>Customer:</strong></p> <ul> <li>{$data['user']['name']}</li> <li>{$data['user']['address']}</li> <li>{$data['user']['city']}, {$data['user']['zip']}</li> </ul> <table border="1"> <thead> <tr> <th>Item</th> <th>Price</th> <th>Qty</th> <th>Total</th> </tr> </thead> <tbody> {foreach $data['invoice']['items'] as $item} <tr> <td>{$item['name']}</td> <td align="right">{$item['price']}</td> <td align="right">{$item['quantity']}</td> <td align="right">{$item['price'] * $item['quantity']}</td> </tr> {/foreach} </tbody> <tfoot> <tr> <th colspan="3" align="right">Total:</th> <td align="right">{$total_amount}</td> </tr> </tfoot> </table> HTML; return $html; }
以上是如何使用 PHP 建立 PDF?的詳細內容。更多資訊請關注PHP中文網其他相關文章!