Lines Matching refs:dir
2 Test dir() function : error conditions
6 * Prototype : object dir(string $directory[, resource $context])
8 * Source code: ext/standard/dir.c
11 echo "*** Testing dir() : error conditions ***\n";
14 echo "\n-- Testing dir() function with zero arguments --";
15 var_dump( dir() );
18 echo "\n-- Testing dir() function with one more than expected number of arguments --";
20 var_dump( dir(getcwd(), "stream", $extra_arg) );
25 *** Testing dir() : error conditions ***
27 -- Testing dir() function with zero arguments --
28 Warning: dir() expects at least 1 parameter, 0 given in %s on line %d
31 -- Testing dir() function with one more than expected number of arguments --
32 Warning: dir() expects at most 2 parameters, 3 given in %s on line %d