php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #801 cannot use the dir() function inside classes
Submitted: 1998-09-30 09:35 UTC Modified: 1998-10-03 20:19 UTC
From: thies at digicol dot de Assigned:
Status: Closed Package: Misbehaving function
PHP Version: 3.0 Latest CVS (30/09/1998) OS: solaris
Private report: No CVE-ID: None
 [1998-09-30 09:35 UTC] thies at digicol dot de
it seems that using the dir() function inside classes does not work the error message is:

Warning: unable to find my handle property in /dot/dgs/tc/dgs/search/test.php3 on line 5

what am i doing wrong???

sample file:

<?
class tubu
{ cfunction test()
    { $d = dir("/tmp/");
      while ($f = $d->read())
        { echo $f."<BR>";
        }
    }
}
/* this works */
    { $d = dir("/tmp/");
      while ($f = $d->read())
        { echo $f."<BR>";
        }
    }

$hallo = new tubu;

/* this doesn't */

$hallo->test();
?>

Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [1998-10-03 20:19 UTC] zeev
Fixed
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Fri May 17 03:01:32 2024 UTC