共计 555 个字符,预计需要花费 2 分钟才能阅读完成。
在 PHP 中,可以使用 file_get_contents()
和file_put_contents()
函数来实现批量替换文件内容。以下是一个简单的示例代码:
// 要替换的内容
$search = 'old content';
$replace = 'new content';
// 遍历文件夹中的所有文件
$files = glob('path/to/files/*');
foreach($files as $file){// 读取文件内容
$content = file_get_contents($file);
// 替换内容
$newContent = str_replace($search, $replace, $content);
// 将替换后的内容写回文件
file_put_contents($file, $newContent);
}
在上面的示例中,首先定义了要替换的内容 $search
和$replace
,然后使用 glob()
函数获取指定文件夹中的所有文件,遍历每个文件并使用 file_get_contents()
读取文件内容,再使用 str_replace()
函数将旧内容替换为新内容,最后使用 file_put_contents()
函数将替换后的内容写回文件中。
丸趣 TV 网 – 提供最优质的资源集合!
正文完