ID: 28355 Updated by: [EMAIL PROTECTED] Reported By: trancer at trancer dot nl -Status: Open +Status: Closed Bug Type: Directory function related Operating System: Linux PHP Version: 4.3.6 Assigned To: hholzgra New Comment:
This bug has been fixed in CVS. Snapshots of the sources are packaged every three hours; this change will be in the next snapshot. You can grab the snapshot at http://snaps.php.net/. Thank you for the report, and for helping us make PHP better. This bug has been fixed in CVS. Snapshots of the sources are packaged every three hours; this change will be in the next snapshot. You can grab the snapshot at http://snaps.php.net/. Thank you for the report, and for helping us make PHP better. Previous Comments: ------------------------------------------------------------------------ [2004-05-11 01:31:57] trancer at trancer dot nl Description: ------------ If the dir isnt readable by the webserver (apache in my case) glob() wont list a thing. Glob wont return an error like 'permission denied' though alike other functions do. It would be nice to see that when glob() cant read the directory it will return an error or a notice. Reproduce code: --------------- <?php error_reporting(E_ALL); print_r(glob('*.png')); ?> The dir in which the png file was, was chmodded to 711 so apache only had execution rights. Expected result: ---------------- Warning: permission denied .... Array( ) Actual result: -------------- Array( ) ------------------------------------------------------------------------ -- Edit this bug report at http://bugs.php.net/?id=28355&edit=1
