Creating and Destroying a Directory Handle : Directory Create Delete « File Directory « PHP
- PHP
- File Directory
- Directory Create Delete
Creating and Destroying a Directory Handle
<?php
if (file_exists("./")) {
if (is_dir ("./")) {
$dh = opendir("./") or die (" Directory Open failed !");
echo "Directory was opened successfully";
closedir ($dh);
}
}
?>
Related examples in the same category