要使用PHP的dompdf库处理中文,请按照以下步骤操作:
composer require dompdf/dompdf
require_once 'vendor/autoload.php';
use Dompdf\Dompdf;
$dompdf = new Dompdf([
'isRemoteEnabled' => true,
'defaultFont' => 'SimSun', // 设置默认字体为宋体
]);
$dompdf->set_option('isRemoteEnabled', true);
$dompdf->set_option('charset', 'UTF-8');
$dompdf->set_option('defaultFont', 'SimSun'); // 设置默认字体为宋体
$html = '<!DOCTYPE html><html><head><meta charset="UTF-8"><title>中文标题</title></head><body><p>这是一个包含中文的段落。</p></body></html>';
$dompdf->loadHtml($html);
$dompdf->render();
$dompdf->stream('document.pdf', ['Attachment' => 0]); // 保存到文件
// 或
$dompdf->stream('document.pdf', ['Attachment' => 1]); // 输出到浏览器
按照以上步骤操作,您可以使用dompdf库处理并导出包含中文的PDF文档。