問題:
ディレクトリとその内容全体を効果的に削除するにはどうすればよいですか、サブディレクトリと関連ファイルを含め、次を使用します。 PHP?
答え:
この再帰的なディレクトリ削除タスクに取り組むには、rmdir マニュアル ページにあるユーザー提供のメソッドを利用します:
function rrmdir($dir) { // Verify if the specified path is a valid directory if (is_dir($dir)) { // Retrieve a list of files and subdirectories within the directory $objects = scandir($dir); // Iterate through each item in the directory foreach ($objects as $object) { // Exclude hidden files and directories (dot files) if ($object !== "." && $object !== "..") { // If the item is a directory, recursively delete it if (is_dir($dir . DIRECTORY_SEPARATOR . $object) && !is_link($dir . "/" . $object)) { rrmdir($dir . DIRECTORY_SEPARATOR . $object); } else { // Delete the item if it's a file unlink($dir . DIRECTORY_SEPARATOR . $object); } } } // Once all items within the directory have been removed, remove the directory itself rmdir($dir); } }
以上がPHP でディレクトリとその内容を再帰的に削除するにはどうすればよいですか?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。