您好,欢迎访问一九零五行业门户网

删除目录及其下的文件还有问题吗?送大家一个写好的函数_PHP教程

dir_delete($file./.$filename);
           }
           closedir($handle);
           rmdir($file);
           return true;
       }
       else
       {
           unlink($file);
       }
        }
    }
?>
http://www.bkjia.com/phpjc/631790.htmlwww.bkjia.comtruehttp://www.bkjia.com/phpjc/631790.htmltecharticle?php /** * c_function::dir_delete() * 删除目录 * @param $file 目录名(不带/) * @return */ function dir_delete($file) { if(file_exists($file)) { if(is_dir($file)) { $handle =...
其它类似信息

推荐信息