Lines Matching refs:opendir
2 Test opendir() function : basic functionality
5 /* Prototype : mixed opendir(string $path[, resource $context])
11 * Test basic functionality of opendir() with absolute and relative paths as $path argument
14 echo "*** Testing opendir() : basic functionality ***\n";
28 echo "\n-- Testing opendir() with absolute path: --\n";
29 var_dump($dh1 = opendir($level_one_dir_path));
32 echo "\n-- Testing opendir() with relative paths: --\n";
34 var_dump($dh2 = opendir($level_two_dir_name));
50 *** Testing opendir() : basic functionality ***
52 -- Testing opendir() with absolute path: --
55 -- Testing opendir() with relative paths: --