[PHP-DEV] Bug #801: cannot use the dir() function inside classes From: thies <email protected>
Date: 09/30/98

From: thies <email protected>
Operating system: solaris
PHP version: 3.0 Latest CVS (30/09/1998)
PHP Bug Type: Misbehaving function
Bug description: cannot use the dir() function inside classes

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();
?>

--
PHP Development Mailing List   http://www.php.net/
To unsubscribe send an empty message to php-dev-unsubscribe <email protected>
For help: php-dev-help <email protected>