使用r +模式更新php .txt文件

时间:2015-03-12 12:16:59

标签: php

我一直在谷歌搜索。它显示了很多方法,但我没有找到我一直在寻找的特定答案。我想知道如何使用r +模式通过php编辑.txt文件的一行或整行的特定字符串。

1 个答案:

答案 0 :(得分:1)

一种方法是读取整个文件,替换你的字符串并再次将全新的字符串写入文件......如果你正在使用小文件。这是一个例子:

<?php
$file = 'filename.txt';
$fileContent = file_get_contents($file);
$replaced = str_replace("replace me", "replace with", $fileContent);
file_put_contents($file, $replaced);
?>