Advertisement
Guest User

Untitled

a guest
Jun 17th, 2019
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. <?php
  2. if(isset($_POST['excluir'])){
  3. if($objs = glob($dir."a1/*")){
  4. foreach($objs as $obj) {
  5. is_dir($obj)? ApagaDir($obj) : unlink($obj);
  6. }
  7. }
  8. if($objs = glob($dir."a2/*")){
  9. foreach($objs as $obj) {
  10. is_dir($obj)? ApagaDir($obj) : unlink($obj);
  11. }
  12. }
  13. }
  14. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement