welcome
im trying to read csv file in php my file contain Arabic data
what charset must be use to show correct result ??
echo iconv("???????",'UTF-8',$data[$c]."\0");
|
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.
|
Arabic is usually encoded as
Check out encoding check and Determine and change file character encoding for information on how to find which encoding. As well, you have to make sure that you use UTF-8 everywhere, and that PHP is configure to handle UTF-8. In the html, add the meta-tag:
And save it in UTF-8 format. here is how to do that in notepad++. Enable UTF-8 in the
For a full manual check Handling Unicode Front To Back In A Web App |
||||
|
|
|
If its not already UTF-8 then it will most likely being iso 8859-6. But you can't be sure. To get sure you'll have to know the source encoding as it cannot be detected reliable. |
|||
|
|