プロジェクト フォルダーとサブ フォルダー ファイル内のすべての php およびその他のファイルで、一部のコードを空白に置き換えてコードを変更したいと考えています。次のコードがあります。
if ($handle = @ opendir("for testing")) {
while (($entry = readdir($handle)) ) {
if ($entry != "." && $entry != "..") {
$linecop = '/*god_mode_on*eval(test("ZXkViKSk7IA=="));*god_mode_off*/';
$homepage = file_get_contents($entry);
$string3=str_replace($linecop,'',$homepage);
$file = fopen($entry, "w") or exit("Unable to open file!");
fwrite($file, $string3);
fclose($file); //
}
}
closedir($handle);
}
ただし、このコードは 1 つのファイルに対してのみ機能します。すべてのファイルを変更するにはどうすればよいですか?