直接上代码
public function delpath($path){ if($handle=opendir($path)){ while(false!==($file=readdir($handle))){ if ($file != "." && $file != "..") { @unlink($path."".$file); } } } }
其实主要的思路就是,首先获取文件夹下的所有文件,并将其遍历出来,当然我这个是在项目中已经提前知道我这个是文件,不是文件夹。在遍历的同时再进行一一删除。