2 回答
TA贡献1796条经验 获得超4个赞
正是foreach你想要的:
foreach (['alpha.php', 'beta.php', 'gamma.php'] as $filename) {
$file = file_get_contents("./test/$filename");
if(strpos($file, "Hello You") !== false){
echo "Already Replaced";
}
else {
$str = str_replace("Go Away", "Hello You", $file);
file_put_contents("./test/$filename", $str);
echo "done";
}
}
你不需要 theif除非你真的需要echos 来查看何时有替换:
foreach (['alpha.php', 'beta.php', 'gamma.php'] as $filename) {
$file = file_get_contents("./test/$filename");
$str = str_replace("Go Away", "Hello You", $file);
file_put_contents("./test/$filename", $str);
}
或者您可以获得替换次数:
$str = str_replace("Go Away", "Hello You", $file, $count);
if($count) {
file_put_contents("./test/$filename", $str);
}
在 Linux 上,您也可以尝试使用replace或replexec
或某些东西,因为它们接受多个文件。
TA贡献1844条经验 获得超8个赞
如果它是预定义的文件,那么您不需要 DirectoryIterator,只需用 3 行或一个循环替换内容
<?php
$files = ['alpha.php', 'beta.php', 'gamma.php'];
foreach ($files as $file)
file_put_contents('./test/'.$file, str_replace("Go Away", "Hello You", file_get_contents('./test/'.$file)));
- 2 回答
- 0 关注
- 74 浏览
添加回答
举报