PHP删除目录的内容

前端之家收集整理的这篇文章主要介绍了PHP删除目录的内容前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我怎么做?有没有kohana 3提供的方法
删除目录和所有这些内容,您必须编写一些递归删除功能 – 或使用已存在的功能.

您可以在rmdir的文档页面上的用户注释中找到一些示例;例如,这是2009年8月的the one proposed by bcairns(引用):

<?PHP
// ensure $dir ends with a slash
function delTree($dir) {
    $files = glob( $dir . '*',GLOB_MARK );
    foreach( $files as $file ){
        if( substr( $file,-1 ) == '/' )
            delTree( $file );
        else
            unlink( $file );
    }
    rmdir( $dir );
}
?>
原文链接:https://www.f2er.com/php/137980.html

猜你在找的PHP相关文章