|
|
| |
1. Does this class support UTF-8? |
|
Reply |
|
|
 meat | 2006-08-23 17:42:02 |
Hi,
I tried to export an excel file which contained UTF-8 character, but it didn't work. After read the document, I couldn't find any infomation about UTF-8 support.
Does it support UTF-8?
Thanks. |
| |
2. Re: Does this class support UTF-8? |
|
Reply |
|
|
 yuriy | 2009-07-06 09:46:07 - In reply to message 1 from meat |
hi, try this:
...
$str = mb_convert_encoding("Тест зі Львова", "CP1251","UTF-8");
$worksheet1->write_string(1, 1, $str);
... |
|