一尘不染

从php生成PDF报告

php

我正在使用php代码查询数据库,结果将用于生成报告。

如果我想以pdf格式生成报告,该怎么办?


阅读 460

收藏
2020-05-29

共1个答案

一尘不染

如果您的PDF文件中需要UTF支持,请考虑使用tcpdf库。

从此处下载:http :
//www.tecnick.com/public/code/cp_dpage.php?aiocp_dp=tcpdf

在您的脚本中:

<?php
//include files
require_once($_SERVER['DOCUMENT_ROOT'].'/tcpdf/config/lang/eng.php');
require_once($_SERVER['DOCUMENT_ROOT'].'/tcpdf/tcpdf.php');

// create new PDF document
$pdf = new TCPDF(PDF_PAGE_ORIENTATION, PDF_UNIT, PDF_PAGE_FORMAT, true, 'UTF-8', false);

//add some content using class methods

//Close and output PDF document
$pdf->Output('filename.pdf', 'I');
?>
2020-05-29