Lines Matching refs:directory
2 Test closedir() function : usage variations - close directory handle twice
12 * Description: Close directory connection identified by the dir_handle
18 * close the directory handle twice using closedir() to test behaviour
23 //create temporary directory for test, removed in CLEAN section
24 $directory = __DIR__ . "/私はガラスを食べられますclosedir_variation2";
25 mkdir($directory);
27 $dh = opendir($directory);
29 echo "\n-- Close directory handle first time: --\n";
34 echo "\n-- Close directory handle second time: --\n";
42 $directory = __DIR__ . "/私はガラスを食べられますclosedir_variation2";
43 rmdir($directory);
48 -- Close directory handle first time: --
52 -- Close directory handle second time: --