我正在尝试使用 SplFileObject() 逐行编辑文件。我可以选择要编辑的文件的行。但是我如何在该行写入一个 $string 呢?
这是我获取该行的代码:
<?php
$file = new SplFileObject('myfile.txt');
$file->seek(9999); // Seek to line no. 10,000
echo $file->current(); // Print contents of that line
?>
如何在该行插入字符串?
注意,我不想覆盖文件,我只想在给定的行插入一个 $string。