|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2002-02-25 06:15 UTC] sander@php.net
[2002-02-25 17:50 UTC] musallam at sympatico dot ca
[2002-07-14 10:46 UTC] nohn@php.net
[2002-07-14 17:54 UTC] sniper@php.net
[2002-08-05 08:29 UTC] sfox@php.net
[2002-08-06 19:39 UTC] sfox@php.net
[2002-08-17 01:03 UTC] sfox@php.net
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Wed Oct 29 15:00:02 2025 UTC |
hi, I'm think this is a valid bug :) I'm trying to list files from a certain directory with readdir() but any accented capital letter is returned without the accent... I'll explain: ---------------------------------- my directory listing is: . .. Bloqueurs des canaux calciques voltage.doc Diur?tiques.doc REGF et JNK.pdf ?icosanoides.doc <-------- ---------------------------------- the file pointed by the arrow is returned "Eicosanoides.doc" no accent on the capital E. The problem isn't present with lowercase letters, i.e. the filename "Diur?tiques.doc" is returned correctly. here's my code: $handle=opendir($dir); echo "Files:<br>\n"; while (false !== ($file = readdir($handle))) { echo "<br>$file\n"; } closedir($handle); I hope this is enough info, dont hesitate to email me for anything. I'm running Apache1.3.23 with PHP4.1.1 binaries from php.net