php – 在多个文件中查找和替换

前端之家收集整理的这篇文章主要介绍了php – 在多个文件中查找和替换前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
好吧,最好的解决方案是在PHP搜索一堆文件内容获取某个字符串并将其替换为其他内容.

完全像记事本如何做,但显然我不需要接口.

foreach (glob("path/to/files/*.txt") as $filename)
{
    $file = file_get_contents($filename);
    file_put_contents($filename,preg_replace("/regexhere/","replacement",$file));
}
原文链接:https://www.f2er.com/php/135749.html

猜你在找的PHP相关文章