I'm trying to create a CSV file using php. How can I print non ascii charaters?
Thanks in advance, Best regards!
|
I'm trying to create a CSV file using php. How can I print non ascii charaters? Thanks in advance, Best regards!
| |||||
feedback
|
|
It is possible to use unicode characters in CSV-files, just make sure you use the right HTTP-headers. This works great in OpenOffice, but if I remember right Excel has some problems displaying CSV-files with unicode characters. Furthermore you should try to use fputcsv, it makes things easier. When you are creating files on the fly, you can use the php output stream. So something like this:
EDIT
Btw, most of the time it's not a good idea to store text with htmlentities in a database, because when you don't want to output html (like in this case) you have to convert them back to real characters. It's easier to just store the text as unicode. | ||||
|
feedback
|
|
fputcsv should handle utf-8. | |||||||
feedback
|
|
Here is what I use, I am sure it could use a little refining for your situation but overall very generic and very useful for many situations. You just feed the function your sql and it will spit out a csv with a header line of the column names.
| |||
|
feedback
|
|
As you say, they are generated on-the-fly (i.e. you're using 1) Add this header at very beginning of your PHP code:
2) Add this meta in the HTML code:
3) Save your PHP code file as UTF-8 without BOM. | |||||||
feedback
|
|
When you select the page info for the web page, check what is the file encoding. Its should be UTF-8. If not, the data that you are outputting is non UTF. | |||||||
feedback
|
|
actually shamittomar's answer is very nice but it miss one thing your problem is related to your encoding example :
consult the php.net for more information | |||
|
feedback
|