For example I have a filename like this - проба.xml and I am unable to open it from PHP script.

If I setup php script to be in utf-8 than all the text in script is utf-8 thus when I pass this to file_get_contents:

$fname = "проба.xml";
file_get_contents($fname);

I get error that file does not exist. The reason for this is that in Windows (XP) all file names with non-latin characters are unicode (UTF-16). OK so I tried this:

$fname = "проба.xml";
$res = mb_convert_encoding($fname,'UTF-8','UTF-16');
file_get_contents($res);

But the error persists since file_get_contents can not accept unicode strings...

Any suggestions?

link|improve this question
Is this code current? You didn't switch $fname with $res in file_get_contents, or was that just a typo? – ryanday Jun 10 '09 at 19:37
This is my typo. I did actually switch the values. – Darko Miletic Jun 10 '09 at 22:02
I got to my XP system and tried your code. I saved the PHP file in unicode, and copy/pasted what you wrote and I can read the file(same filename). What encoding is your source file saved in? – ryanday Jun 11 '09 at 0:56
It's not the file content that is problem. It is the file name. If file name contains non-ascii characters, on windows, it is saved as unicode filename, not as unicode file content. – Darko Miletic Jun 11 '09 at 13:16
My source file is saved in utf-8, I also tried iso-8859-1 and it's the same. Error persists. – Darko Miletic Jun 11 '09 at 13:16
show 1 more comment
feedback

2 Answers

You could try:

  • getting the string for the filename from a directory listing using opendir and readdir
  • passing that string to file_get _contents to see if that will work, or
  • try getting the content of the file using fopen, fread and fclose

Hope this helps!

link|improve this answer
feedback
up vote 0 down vote accepted

These are conclusions so far:

  1. PHP 5 can not open filename with unicode characters unless the source filename is unicode.
  2. PHP 5 (at least on windows XP) is not able to process PHP source in unicode.

Thus the conclusion this not doable in PHP 5.

link|improve this answer
PHP can open a filename with non-ASCII characters only if all the characters are in the Windows installation's default code page. It can deal with string literals containing non-ASCII characters; it just uses the direct bytes, so how that works will depend on what encoding you saved the source file in, in your text editor. The encoding that many Windows text editors inaccurately call “Unicode” is in fact UTF-16LE, which, being non-ASCII-compatible, PHP can't deal with. See this question for background. – bobince Nov 4 '10 at 0:51
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.