当前位置: 首页 > 工具软件 > PHP Snappy > 使用案例 >

php snappy,php – 使用Knp Snappy生成pdf文件时出现错误字符

张唯
2023-12-01

尝试添加编码属性

'encoding' => 'utf-8',

继承了我的工作代码的完整副本,请注意我将一个options数组作为第二个参数传递给getOutPutFromHtml()

return new Response(

$this->get('knp_snappy.pdf')->getOutputFromHtml($html, array(

'orientation' => 'landscape',

'enable-javascript' => true,

'javascript-delay' => 1000,

'no-stop-slow-scripts' => true,

'no-background' => false,

'lowquality' => false,

'encoding' => 'utf-8',

'images' => true,

'cookie' => array(),

'dpi' => 300,

'image-dpi' => 300,

'enable-external-links' => true,

'enable-internal-links' => true

)),

200,

array(

'Content-Type' => 'application/pdf',

'Content-Disposition' => 'attachment; filename="report.pdf"'

)

);

 类似资料: