PHP |替换大型 txt 文件中的行

PHP | Replace line in large txt-file

我有一个很大的 txt 文件,例如:
text.txt 其中包含:

line1
line2
line3
line4
line5
line6
line7
line8
line9

但我无法找到任何解决方案,如何制作一个 PHP 文件,该文件只需将行 4 替换为具有不同文本的内容 line4....

感谢您的帮助! :)

您应该为此使用 PHP 的 file() 函数。它将 return 一个包含每一行的数组。

$file = file('path/to/text.txt');
$lines = array_map(function ($value) { return rtrim($value, PHP_EOL); }, $file);
$lines[3] = 'New content for line 4';
$lines = array_values($lines);

要再次保存,用换行符分解数组:

$content = implode(PHP_EOL, $lines);
file_put_contents('path/to/your/file.txt', $content);

您可以读取数组中的文件,通过删除第 3 个索引来删除第 4 行,然后将所有内容放回文件中:

$lines = file('text.txt'); //read the file in an array
array_splice($lines , 3); //remove 4th line
//or
array_splice($lines , 3, 'different text'); //replace line with different text
file_put_contents('text.txt', implode("\n", $lines)); //put the array back into the file

我认为解决方案应该如下所示 - 1.使用file_get_contents()函数获取文本文件的内容 2.然后替换文字 3. 然后再次使用 file_put_contents()

再次写回该文本文件中的现有数据

代码片段

$remove_text = "text to remove";
$file_content = file_get_contents("your text file");
if(($key = array_search($remove_text, $file_content)) !== false) {
    unset($file_content[$key]);
}
file_put_contents("your text file",$file_content);

希望对您有所帮助:)