特定ディレクトリ配下のファイルを一括削除
if ($handle = opendir($dir)) { while (($file = readdir($handle)) !== FALSE) { $target_file = $dir.'/'.$file; if (is_file($target_file)) { unlink($target_file); } } }