Lines Matching refs:closedir
2 Test closedir() function : basic functionality
5 /* Prototype : void closedir([resource $dir_handle])
12 * Test basic functionality of closedir()
15 echo "*** Testing closedir() : basic functionality ***\n";
21 echo "\n-- Call closedir() with no arguments: --\n";
23 var_dump(closedir());
27 echo "\n-- Call closedir() with \$dir_handle argument supplied: --\n";
33 var_dump(closedir($dh2));
45 *** Testing closedir() : basic functionality ***
47 -- Call closedir() with no arguments: --
52 -- Call closedir() with $dir_handle argument supplied: --