We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Is it possible to add a version that tests if exec is enabled
If not that it uses something like this:
function cleandir($dir) {
if ($handle = opendir($dir)) { while (false !== ($file = readdir($handle))) { if ($file != '.' && $file != '..' && is_file($dir.'/'.$file)) { if (unlink($dir.'/'.$file)) { } else { echo $dir . '/' . $file . ' (file) NOT deleted!<br />'; } } else if ($file != '.' && $file != '..' && is_dir($dir.'/'.$file)) { cleandir($dir.'/'.$file); if (rmdir($dir.'/'.$file)) { } else { echo $dir . '/' . $file . ' (directory) NOT deleted!<br />'; } } } closedir($handle); }
}
The text was updated successfully, but these errors were encountered:
This makes a lot of sense - If you create a pull request I can merge this in.
Sorry, something went wrong.
No branches or pull requests
Is it possible to add a version that tests if exec is enabled
If not that it uses something like this:
function cleandir($dir) {
}
The text was updated successfully, but these errors were encountered: