Lines Matching refs:chdir
2 Test chdir() function : basic functionality
5 /* Prototype : bool chdir(string $directory)
11 * Test basic functionality of chdir() with absolute and relative paths
14 echo "*** Testing chdir() : basic functionality ***\n";
27 echo "\n-- Testing chdir() with absolute path: --\n";
28 chdir($base_dir_path);
29 var_dump(chdir($level_one_dir_path));
32 echo "\n-- Testing chdir() with relative paths: --\n";
33 var_dump(chdir($level_two_dir_name));
44 *** Testing chdir() : basic functionality ***
46 -- Testing chdir() with absolute path: --
50 -- Testing chdir() with relative paths: --