Edit report at https://bugs.php.net/bug.php?id=65325&edit=1
ID: 65325 Updated by: a...@php.net Reported by: jacob at prodemge dot gov dot br Summary: function glob malfunction -Status: Open +Status: Feedback Type: Bug Package: *Directory/Filesystem functions Operating System: Linux appgmo 2.6.32-220.el6.x86_ PHP Version: Irrelevant Block user comment: N Private report: N New Comment: Just calling glob() doesn't reproduce this for me. There must be something special involved, could you find out what that is? Maybe access right, high load, beyond ... please check again and give a way to repro this. Previous Comments: ------------------------------------------------------------------------ [2013-07-24 14:45:39] jacob at prodemge dot gov dot br Description: ------------ --- >From manual page: http://www.php.net/function.glob#refsect1-function.glob- returnvalues --- // /produtos/web/SOAP/wsdl/class.phpwsdl*.php $files=glob(dirname(__FILE__).'/'.'class.phpwsdl*.php'); not reached -> echo "files ";print_r($files);echo "<br>"; if($files!==false){ $i=-1; $len=sizeof($files); while(++$i<$len){ self::Debug('Load '.$files[$i]); require_once($files[$i]); } }else{ self::Debug('"glob" failed'); } Test script: --------------- $files=glob(dirname(__FILE__).'/'.'class.phpwsdl*.php'); echo "files ";print_r($files);echo "<br>"; if($files!==false){ $i=-1; $len=sizeof($files); while(++$i<$len){ self::Debug('Load '.$files[$i]); require_once($files[$i]); } }else{ self::Debug('"glob" failed'); } Expected result: ---------------- a list of files Actual result: -------------- the control never return to script ------------------------------------------------------------------------ -- Edit this bug report at https://bugs.php.net/bug.php?id=65325&edit=1