php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #65325 function glob malfunction
Submitted: 2013-07-24 14:45 UTC Modified: 2013-08-14 06:59 UTC
From: jacob at prodemge dot gov dot br Assigned:
Status: No Feedback Package: *Directory/Filesystem functions
PHP Version: Irrelevant OS: Linux appgmo 2.6.32-220.el6.x86_
Private report: No CVE-ID: None
View Add Comment Developer Edit
Anyone can comment on a bug. Have a simpler test case? Does it work for you on a different platform? Let us know!
Just going to say 'Me too!'? Don't clutter the database with that please — but make sure to vote on the bug!
Your email address:
MUST BE VALID
Solve the problem:
7 - 1 = ?
Subscribe to this entry?

 
 [2013-07-24 14:45 UTC] 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

Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2013-07-29 18:25 UTC] ab@php.net
-Status: Open +Status: Feedback
 [2013-07-29 18:25 UTC] ab@php.net
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.
 [2013-08-14 06:59 UTC] ab@php.net
-Status: Feedback +Status: No Feedback
 [2013-08-14 06:59 UTC] ab@php.net
No feedback was provided. The bug is being suspended because
we assume that you are no longer experiencing the problem.
If this is not the case and you are able to provide the
information that was requested earlier, please do so and
change the status of the bug back to "Re-Opened". Thank you.


 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Thu Apr 25 11:01:30 2024 UTC