Lines Matching refs:opendir
2 Test opendir() function : usage variations - Different wildcards
11 /* Prototype : mixed opendir(string $path[, resource $context])
17 * Pass paths containing wildcards to test if opendir() recognises them
20 echo "*** Testing opendir() : usage variations ***\n";
32 var_dump( opendir($file_path . "/opendir_var*") );
33 var_dump( opendir($file_path . "/*") );
36 var_dump( opendir($dir_path . "/sub_dir?") );
37 var_dump( opendir($dir_path . "/sub?dir1") );
50 *** Testing opendir() : usage variations ***
54 Warning: opendir(%s/opendir_var*): failed to open dir: %s in %s on line %d
57 Warning: opendir(%s/*): failed to open dir: %s in %s on line %d
62 Warning: opendir(%s/opendir_variation6/sub_dir?): failed to open dir: %s in %s on line %d
65 Warning: opendir(%s/opendir_variation6/sub?dir1): failed to open dir: %s in %s on line %d