>  기사  >  백엔드 개발  >  phpexcel生成pdf如何用arialunicid0-chinese-simplified.php文件设置中文?

phpexcel生成pdf如何用arialunicid0-chinese-simplified.php文件设置中文?

WBOY
WBOY원래의
2016-06-20 12:42:061426검색

$filename=strval(date("Y-m-d h_i_sa",time()));header('Content-Type: application/pdf');header('Content-Disposition: attachment;filename="'.$filename.'.pdf"');header('Cache-Control: max-age=0');$objWriter = PHPExcel_IOFactory::createWriter($objPHPExcel, 'PDF');$objWriter->save('php://output');


如题...


回复讨论(解决方案)

$objWriter->setFont('arialunicid0-chinese-simplified');
自己从PHPExcel/Writer/PDF.php 里找到了,里面还有很多方法可以看着用

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.