当前位置:Gxlcms > PHP教程 > php删除文件夹及其文件夹下所有文件_PHP教程

php删除文件夹及其文件夹下所有文件_PHP教程

时间:2021-07-01 10:21:17 帮助过:28人阅读

  function deldir($dir) {

  $dh=opendir($dir);

  while ($file=readdir($dh)) {

  if($file!="." && $file!="..") {

  $fullpath=$dir."/".$file;

  if(!is_dir($fullpath)) {

  unlink($fullpath);

  } else {

  deldir($fullpath);

  }

  }

  }

  closedir($dh);

  if(rmdir($dir)) {

  return true;

  } else {

  return false;

  }

  }

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/752067.htmlTechArticlefunction deldir($dir) { $dh=opendir($dir); while ($file=readdir($dh)) { if($file!=. $file!=..) { $fullpath=$dir./.$file; if(!is_dir($fullpath)) { unlink($fullpath); } else { deldir...

人气教程排行