Lines Matching refs:opendir
2 Test opendir() function : usage variations - different data types as $path arg
11 /* Prototype : mixed opendir(string $path[, resource $context])
17 * Pass different data types as $path argument to opendir() to test behaviour
21 echo "*** Testing opendir() : usage variations ***\n";
100 // loop through each element of $inputs to check the behavior of opendir()
104 var_dump( $dh = opendir($input) );
120 *** Testing opendir() : usage variations ***
124 Warning: opendir(0): failed to open dir: %s in %s on line %d
129 Warning: opendir(1): failed to open dir: %s in %s on line %d
134 Warning: opendir(12345): failed to open dir: %s in %s on line %d
139 Warning: opendir(-2345): failed to open dir: %s in %s on line %d
144 Warning: opendir(10.5): failed to open dir: %s in %s on line %d
149 Warning: opendir(-10.5): failed to open dir: %s in %s on line %d
154 Warning: opendir(123456789000): failed to open dir: %s in %s on line %d
159 Warning: opendir(1.23456789E-9): failed to open dir: %s in %s on line %d
164 Warning: opendir(0.5): failed to open dir: %s in %s on line %d
175 Warning: opendir(1): failed to open dir: %s in %s on line %d
183 Warning: opendir(1): failed to open dir: %s in %s on line %d
197 Warning: opendir() expects parameter 1 to be string, array given in %s on line %d
205 Warning: opendir(string): failed to open dir: %s in %s on line %d
222 Warning: opendir() expects parameter 1 to be string, resource given in %s on line %d