vote up 1 vote down star

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?

flag
Is this code current? You didn't switch $fname with $res in file_get_contents, or was that just a typo? – ryanday Jun 10 at 19:37
This is my typo. I did actually switch the values. – Darko Miletic Jun 10 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 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 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 at 13:16
show 1 more comment

2 Answers

vote up 0 vote down check

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|flag
vote up 0 vote down

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|flag

Your Answer

Get an OpenID
or

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