Guest User

Untitled

a guest
Nov 18th, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. <?php
  2. function removeDirectory($dir) {
  3. if ($objs = glob($dir."/*")) {
  4. foreach($objs as $obj) {
  5. is_dir($obj) ? removeDirectory($obj) : unlink($obj);
  6. }
  7. }
  8. rmdir($dir);
  9. }
  10. ?>
Add Comment
Please, Sign In to add comment