惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

G
Google Developers Blog
阮一峰的网络日志
阮一峰的网络日志
A
About on SuperTechFans
大猫的无限游戏
大猫的无限游戏
Engineering at Meta
Engineering at Meta
V
Visual Studio Blog
Martin Fowler
Martin Fowler
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
博客园 - 叶小钗
I
InfoQ
B
Blog RSS Feed
aimingoo的专栏
aimingoo的专栏
Y
Y Combinator Blog
Blog — PlanetScale
Blog — PlanetScale
IT之家
IT之家
P
Proofpoint News Feed
WordPress大学
WordPress大学
小众软件
小众软件
B
Blog
MongoDB | Blog
MongoDB | Blog
人人都是产品经理
人人都是产品经理
量子位
Hugging Face - Blog
Hugging Face - Blog
月光博客
月光博客

博客园 - chenping2008

连接远程数据库,得到数据插入本地表中 php复制目录 php统计目录大小 js秒数转换天时分秒 JS切换图片 js 游览器log的记录 2个iframe中checkbox联动 JS Clone函数 JS普通递归的改进 JS随机数的产生方法 JS相等运算符(==)和等同运算符(===) silverlight树形结构区服选择 Mongodb的一些基本概念 Mongodb在Ubuntu下的安装 redis windows下使用及redis命令 相册功能 Node.js 系列翻译---console Node.js 系列翻译---概要 补充Silverlight中图片显示
PHP删除目录
chenping2008 · 2013-06-23 · via 博客园 - chenping2008
function delDir($directory)
{
    if(file_exists($directory))
    {
        $dir_handle = @opendir($directory);
        if($dir_handle)
        {
            while($filename = readdir($dir_handle))
            {
                if($filename != "." && $filename != "..")
                {
                    $subFile = $directory ."\\".$filename;
                    if(is_dir($subFile))
                    {
                        delDir($subFile);
                    }
                    else
                    {
                        unlink($subFile);
                    }   
                }
            }
            closedir($dir_handle);
            rmdir($directory);
        }
    }
}

posted @ 2013-06-23 10:29  chenping2008  阅读(171)  评论(0)    收藏  举报