Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.
mkdir('سسسس'); //create ط³ط³ط³ط³  directory on wampserver (windows) but in web server (linux) create 'سسس'

browser try to open directory url/سسس : in wampserver return 404 error but in web server show directory contents

share|improve this question
6  
Windows doesn't support non-ASCII directory names particularly well, and other platforms vary widely; so it's always more sensible to restrict your directory names to ASCII characters – Mark Baker Nov 9 '12 at 0:04
@MarkBaker: Windows has no problem with non-ASCII directory names, it just doesn't default to UTF-8 for the C-style file system manipulation functions. To deal with full Unicode paths you have to go through the widechar versions of the functions, like _wmkdir (or the widechar entry points of the Win32 API; CreateDirectoryW) – John Bartholomew Nov 9 '12 at 0:21
1  
It still saves a lot of aggravation if ASCII is used for filenames, and it's cross-platform – Mark Baker Nov 9 '12 at 0:45

1 Answer

up vote 1 down vote accepted
$str = 'سسسس';
if (strtoupper(substr(PHP_OS, 0, 3)) === 'WIN') {
     $str = iconv( "UTF-8", "Windows-1256", $str );
}
mkdir( $str );

This will work if your iconv supports Windows-1256 and the PHP file containing the string literal 'سسسس' is saved in UTF-8.

share|improve this answer
It works perfectly – Paull Nov 9 '12 at 0:29

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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