gpt4 book ai didi

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

转载 作者:可可西里 更新时间:2023-11-01 12:42:07 25 4
gpt4 key购买 nike

好的,在 php 中搜索一堆文件内容以查找特定字符串并将其替换为其他内容的最佳解决方案是什么。

完全像 notepad++ 是如何做的,但显然我不需要那个接口(interface)。

最佳答案

foreach (glob("path/to/files/*.txt") as $filename)
{
$file = file_get_contents($filename);
file_put_contents($filename, preg_replace("/regexhere/","replacement",$file));
}

关于php - 在多个文件中查找和替换,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3983090/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com