0

ディレクトリ、その内容、およびサブディレクトリとその内容を削除するようにPHPを設定しました...私はPHPを初めて使用するので、間違いなく間違ったことをしている、または最も非効率的な方法で何かをしています。

これをより良くする方法についてのいくつかの参考文献や提案を探しています...

ちなみに、このコードは正常に機能します。PHP5.3.8を使用します。

chmod($main_dir, 0755);
if ($handle = opendir($main_dir)) {
    while (false !== ($entry = readdir($handle))) { 
        $absolute_path = $main_dir.'/'.$entry;
        if ($entry != "." && $entry != "..") {      
            chmod($absolute_path, 0755);
            unlink($absolute_path);

            //check if any folders exist, then delete files within
            if (file_exists($absolute_path) && is_dir($absolute_path)) {
                if ($child_handle = opendir($absolute_path)) {
                    while (false !== ($child_entry = readdir($child_handle))) {             
                    $child_absolute_path = $absolute_path.'/'.$child_entry;
                        if ($child_entry != "." && $child_entry != "..") {              
                            chmod($child_absolute_path, 0755);
                            unlink($child_absolute_path);
                        }
                    }
                    closedir($child_handle);
                }
            }
            rmdir($absolute_path);
        }
    }
    closedir($handle);
}
rmdir($main_dir);

何かご意見は?とても有難い!PHP5.3.8を使用しています

4

1 に答える 1

4

を使用RecursiveDirectoryIteratorして、すべてのファイルとフォルダを一覧表示してから削除できます。RecursiveIteratorIterator::CHILD_FIRSTフォルダの前にファイルが削除されるように使用する必要があることに注意してください。

$dir = __DIR__ . "/test";
$di = new RecursiveDirectoryIterator($dir, FilesystemIterator::SKIP_DOTS);
$ri = new RecursiveIteratorIterator($di, RecursiveIteratorIterator::CHILD_FIRST);
foreach ( $ri as $file ) {
    $file->isDir() ?  rmdir($file) : unlink($file);
}
于 2012-10-19T02:21:11.173 に答える