Skip to content

Instantly share code, notes, and snippets.

@egoist
Created November 21, 2014 02:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save egoist/d36417dc1339aec18d8b to your computer and use it in GitHub Desktop.
Save egoist/d36417dc1339aec18d8b to your computer and use it in GitHub Desktop.
删除目录下所有文件
<?
$files = glob('path/to/temp/*'); // get all file names
foreach($files as $file){ // iterate files
if(is_file($file))
unlink($file); // delete file
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment