Click here to Skip to main content
15,886,778 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I am trying to make a directory via mkdir through following path:
C#
if(FALSE == mkdir($mystring))
{
    mkdir('false');
}


where content of $mystring is "Debghosh" (it is in unicode)
Same problem as this: http://stackoverflow.com/questions/11703711/php-mkdir-in-hebrew-creates-gibrish-folder[^]
Can any one give solution?
Posted
Updated 15-Mar-13 0:05am
v2
Comments
Zoltán Zörgő 15-Mar-13 6:14am    
What platform, what os?
What error message?
What is the use of mkdir('false') - but does it make the 'false' folder?
What is the running context? Are you sure you have the right to make a folder there?
iDebD 15-Mar-13 6:39am    
os- win7
error - something time mismatch
Yess...it is creating false folder
sure i have permission, it is creating false folder.

As $mystring is unicod eit is not craeting it. if i use urlencode($mystring) it is creating folder with name "D%00E%00B%00D%00" where i expect "DEBD"
Zoltán Zörgő 15-Mar-13 13:17pm    
Check the answer here: http://stackoverflow.com/questions/11703711/php-mkdir-in-hebrew-creates-gibrish-folder

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900