12/20/2016

PHP : PHP Delete All File And Folder

PHP : PHP Delete All File And Folder

Use This Code :
  1.  
  2. $targetDir = 'uploads/contract/'.$_GET["CID"];
  3.  
  4. array_map('unlink', glob("$targetDir/*.*"));
  5. rmdir($targetDir);
  6.  

http://stackoverflow.com/questions/3349753/delete-directory-with-files-in-it

No comments:

Post a Comment