| Article: |
Working with Files in PHP, Part 3 | |
| Subject: | dir class | |
| Date: | 2003-02-06 12:31:15 | |
| From: | arjo.post@hccnet.nl | |
|
the following object creation is not working for me: $mydir = new dir('/path/to/mydir'); I get the error: Fatal error: Cannot instantiate non-existent class: dir in d:\myphp\dir.php on line 2 can you help me?
|
||
Showing messages 1 through 3 of 3.
-
dir class
2004-11-05 18:22:58 Tyrrael [View]
-
dir class
2003-11-19 12:28:21 anonymous2 [View]
BTW, the if(is_dir($mydir->path.$file)) part includes the .. and . "directories"... so if, like me, you just wish to display a list of sub-directories, you'll need to ignore those two entries:
if(is_dir($mydir->path.$file) && !strstr($file,".")) {
Great article BTW :-)



from:
$mydir = new dir('/path/to/mydir');
to:
$mydir = dir('/path/to/mydir');