Lines Matching refs:directory
2 Test closedir() function : usage variations - close directory handle twice
6 * close the directory handle twice using closedir() to test behaviour
11 //create temporary directory for test, removed in CLEAN section
12 $directory = __DIR__ . "/closedir_variation2";
13 mkdir($directory);
15 $dh = opendir($directory);
17 echo "\n-- Close directory handle first time: --\n";
22 echo "\n-- Close directory handle second time: --\n";
33 $directory = __DIR__ . "/closedir_variation2";
34 rmdir($directory);
39 -- Close directory handle first time: --
43 -- Close directory handle second time: --