| Sign In/My Account | View Cart |
| 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 4 of 4.
from:
$mydir = new dir('/path/to/mydir');
to:
$mydir = dir('/path/to/mydir');