使用此PDF库https://github.com/thujohn/pdf-l4以PHP(Laravel)生成PDF
我尝试的地方:
fetch(...).then(res => res.json())
我将 $html = '<html>';
$html .= '<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />';
$html .= '<body>مرحبا</body>';
$html .= '</html>';
return PDF::load( utf8_decode($html) , 'A4', 'portrait' )->show();
作为输出而不是 ?????
当我删除 utf8_decode 时 我得到空洞的回应。
任何人都可以告诉我如何使用PHP在PDF中显示阿拉伯字符。
提前致谢。