glob wont error if dir is not readable

 [2004-05-11 01:31 UTC] 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( )