|   | php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login | 
| 
 PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits              [2014-05-21 17:41 UTC] aharvey@php.net
 
-Package: *General Issues
+Package: Filesystem function related
  [2021-09-13 08:14 UTC] cmb@php.net
 
-Status:      Open
+Status:      Feedback
-Assigned To:
+Assigned To: cmb
  [2021-09-13 08:14 UTC] cmb@php.net
  [2021-09-26 04:22 UTC] php-bugs at lists dot php dot net
 | |||||||||||||||||||||||||||||||||||||
|  Copyright © 2001-2025 The PHP Group All rights reserved. | Last updated: Fri Oct 31 11:00:01 2025 UTC | 
Description: ------------ We upload files with winscp to our server. On the server we have an script which imports these files. Some of the files have german umlauts. These are somewhat wrongly encoded. When I try to use glob to read all files in an dir with such an file this file will be silently ignored. Test script: --------------- > ls -l total 972 -rw-r--r--+ 1 dholler dholler 69288 2014-04-08 12:21 00442_115_102_GBA.pdf -rw-r--r--+ 1 dholler dholler 211968 2014-04-08 12:27 00442_305_31_ueber_2013_1[1].xls -rw-r--r--+ 1 dholler dholler 19523 2014-04-08 14:55 00442_325_32_stob3_2013_1_1_.xlsx -rw-r--r--+ 1 dholler dholler 142640 2014-04-25 09:35 00442 BV-001.jpg -rw-r--r--+ 1 dholler dholler 120271 2014-04-25 09:35 00442 BV-002.jpg -rw-r--r--+ 1 dholler dholler 277317 2014-04-23 08:20 00442 Einverst?ndniserkl?rung.pdf -rw-r--r--+ 1 dholler dholler 124950 2014-04-25 09:31 00442 SolumGBA.pdf -rw-r--r--+ 1 dholler dholler 17920 2014-04-25 09:42 Thumbs.db > echo '<?php print_r(glob("*"));' | php Array ( [0] => 00442_115_102_GBA.pdf [1] => 00442_305_31_ueber_2013_1[1].xls [2] => 00442_325_32_stob3_2013_1_1_.xlsx [3] => 00442 BV-001.jpg [4] => 00442 BV-002.jpg [5] => 00442 SolumGBA.pdf [6] => Thumbs.db ) Expected result: ---------------- File will not be ignored an i get an error message or even better the file can be handled. Actual result: -------------- File is ignored.