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*,%s/opendir_var*): %s in %s on line %d
56 Warning: opendir(%s/opendir_var*): failed to open dir: %s in %s on line %d
59 Warning: opendir(%s/*,%s/*): %s in %s on line %d
61 Warning: opendir(%s/*): failed to open dir: %s in %s on line %d
66 Warning: opendir(%s/opendir_variation6/sub_dir?,%s/opendir_variation6/sub_dir?): %s in %s on line %d
68 Warning: opendir(%s/opendir_variation6/sub_dir?): failed to open dir: %s in %s on line %d
71 Warning: opendir(%s/opendir_variation6/sub?dir1,%s/opendir_variation6/sub?dir1): %s in %s on line %d
73 Warning: opendir(%s/opendir_variation6/sub?dir1): failed to open dir: %s in %s on line %d