Edit report at https://bugs.php.net/bug.php?id=64506&edit=1
ID: 64506
User updated by: vibbow at hotmail dot com
Reported by: vibbow at hotmail dot com
Summary: PHP can not read or write file correctly if file
name have special char like Å¡
Status: Duplicate
Type: Bug
Package: Filesystem function related
Operating System: Windows 7
PHP Version: 5.4.13
Block user comment: N
Private report: N
New Comment:
For the second part.
I had try convert the file name to UTF-8, GBK or GB2312 encode,
but none of these encode will save the file in correct file name
For the third part.
I had try convert the filename to all encode which mb_convert support,
But none of any encode will work.
Previous Comments:
------------------------------------------------------------------------
[2013-03-25 02:16:58] [email protected]
duplicate of bugs about unicode API support for file operations.
Temporary solution is to either choose the right encoding (windows encoding),
mbstring supports conversions for all windows encoding.
------------------------------------------------------------------------
[2013-03-25 02:07:50] vibbow at hotmail dot com
Description:
------------
System envirement:
Windows 8 x64 Simplified Chinese
PHP 5.4.13 nts (Non debug version, download from windows.php.net)
1. This problem only happened on Windows (I tried on linux, it works fine)
2. If I want to save a file with special character in file name (For example, I
want to save file to "Å¡.txt"), the file name will actually become "æ§.txt"
3. If in my folder, I have a file named Å¡.txt, when I use scandir to list all
the files in thsi folder, this file will list as "?.txt"
Test script:
---------------
<?php file_put_contents('Å¡.txt', 'test'); ?>
------------------------------------------------------------------------
--
Edit this bug report at https://bugs.php.net/bug.php?id=64506&edit=1