// Open a known directory, read directory into variable and then close if (is_dir($dir)) {
if ($dh = opendir($dir)) { $directory = readdir($dh); closedir($dh);
}
} ?>
add a note
User Contributed Notes Close directory handle
There are no user contributed notes for this page.