Codeigniter / PHPexcel Set arabic title in properties of xls file

…衆ロ難τιáo~ 提交于 2019-12-12 04:09:00

问题


I am working on my web project using Codeigniter. I want to generate an excel file by setting the data in the file, for now that's cool.

but I have a problem is that the site uses Arabic as a primary language, and I would set the title and description in the properties of excel file.

when I open the excel file and I open the properties, it does not display the title and description in Arabic, but like this:

هل تعتقد أن النظام السوري سيستجيب لشروط خاطÙÂي نساء وأطÙÂال من العلوين؟

I tried utf8_decode function but it does not work

thank you


回答1:


the problem is that the excel file is saved version 5, then I should Register with the 2007 version (. xlsx) and the Arabic values ​​appear correctly in file properities:

$obj_writer = PHPExcel_IOFactory::createWriter($this->excel, 'Excel2007');
$obj_writer->save('php://output');


来源:https://stackoverflow.com/questions/23280161/codeigniter-phpexcel-set-arabic-title-in-properties-of-xls-file

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!