Spreadsheet Excel Writer is a PEAR package that allows you to generate Excel documents.
When we try to generate an new Excel document using UTF-8 string we ran into a display error.
There is a simple way to fix this problem. See the example below:
$workbook = new Spreadsheet_Excel_Writer(); $workbook->send("file.xls"); // add this row $workbook->setVersion(8); $worksheet =& $workbook->addWorksheet("My worksheet"); // add this row $worksheet->setInputEncoding("UTF-8"); $workbook->close(); |