ID: 37945 Updated by: [EMAIL PROTECTED] Reported By: andreas dot schmidt at stasy dot de -Status: Open +Status: Wont fix Bug Type: *Directory/Filesystem functions Operating System: Linux PHP Version: 5.1.4 New Comment:
Unicode support will appear only in PHP6, you have to wait until then. Previous Comments: ------------------------------------------------------------------------ [2006-06-28 10:46:07] andreas dot schmidt at stasy dot de Description: ------------ When pathinfo() is passed an argument which contains special characters like german Umlaute äöü or french é, the return array contains wrong informations. In case of special characters in a directory name, the value for the key "basename" will be the name of the parent directory of this directory. The script was testet in UTF-8 and ISO-8859-1 with same results. This bug occured at least with a) a 'hand rolled' PHP 5.1.4 on Apache 1.3.36 b) PHP 5.1.2 on Apache 2.0.55 (Ubuntu 6.06 package) c) PHP 5.0.3 on Apache 2.0.53 (SuSE Linux 9.3) The problem does not occur when the script is run in a Win2k environment. Furthermore it seems to be a PHP 5 bug as it did not occur when run with PHP4. Reproduce code: --------------- <?php $dir = 'demo/testdir/äöüé'; $pinfo = pathinfo($dir); echo $pinfo['basename']; ?> Expected result: ---------------- äöüé Actual result: -------------- testdir ------------------------------------------------------------------------ -- Edit this bug report at http://bugs.php.net/?id=37945&edit=1