|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2005-06-07 09:49 UTC] derick@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Fri Nov 07 16:00:02 2025 UTC |
Description: ------------ basename() cannot work with Chinese file name,such as:basename("c:/php/?ļ???a.php") it will return "a.php" the first word of file name can't be Chinese Reproduce code: --------------- <? $dir="c:/php/?ļ???a.php"; echo basename($dir); ?> Expected result: ---------------- ?ļ???a.php Actual result: -------------- a.php