PHP删除过期日期的目录中的所有子目录?

时间:2011-02-21 14:16:54

标签: php directory unlink rmdir

有一个目录/home/example/public_html/users/files/。在目录中,存在具有随机名称的子目录,如2378232828923_1298295497

如何完全删除创建日期>的子目录? 1个月?

我用一个很好的脚本来删除文件,但它不能用于dirs:

$seconds_old = 2629743; //1 month old
$directory = "/home/example/public_html/users/files/";

            if( !$dirhandle = @opendir($directory) )
                        return;

             while( false !== ($filename = readdir($dirhandle)) ) {
                     if( $filename != "." && $filename != ".." ) {
                                $filename = $directory. "/". $filename;

                             if( @filectime($filename) < (time()-$seconds_old) )
                                      @unlink($filename); //rmdir maybe?
                     }
             }

3 个答案:

答案 0 :(得分:0)

你需要一个递归函数。

function remove_dir($dir)
{
    chdir($dir);
    if( !$dirhandle = @opendir('.') )
        return;

    while( false !== ($filename = readdir($dirhandle)) ) {
        if( $filename == "." || $filename = ".." )
            continue;

        if( @filectime($filename) < (time()-$seconds_old) ) {
            if (is_dir($filename)
                remove_dir($filename);
            else 
                @unlink($filename);
        }
    }
    chdir("..");
    rmdir($dir);
}

答案 1 :(得分:0)

 <?php
    $dirs = array();
    $index = array();
    $onemonthback = strtotime('-1 month');
    $handle = opendir('relative/path/to/dir');
    while($file = readdir($handle){
        if(is_dir($file) && $file != '.' && $file != '..'){
            $dirs[] = $file;
                $index[] = filemtime( 'relative/path/to/dir/'.$file );
        }
}    
closedir($handle);


    asort( $index );

    foreach($index as $i => $t) {

        if($t < $onemonthback) {
            @unlink('relative/path/to/dir/'.$dirs[$i]);
        }


}
?>

答案 2 :(得分:0)

如果PHP在Linux服务器上运行,您可以使用shell命令来提高性能(递归PHP函数在非常大的目录中可能效率低下):

shell_exec('rm -rf '.$directory);