我是新来的。
无论如何,我对 fwrite() 进行了研究,但我找不到解决方案,所以我正在寻求帮助。我想要的是 fe 在其他特定行之后添加新的文本行。Fe 我有一个 .txt 文件,其中有:
//Users
//Other stuff
//Other stuff2
现在我想做的是能够在 //Users 下方添加一个新用户,而无需触摸“Other Stuff”和“Other Stuff 2”。所以它应该看起来像这样:
//Users
Aneszej
Test321
Test123
//Other stuff
//Other stuff2
到目前为止我所拥有的:
$config = 'test.txt';
$file=fopen($config,"r+") or exit("Unable to open file!");
$date = date("F j, Y");
$time = date("H:i:s");
$username = "user";
$password = "pass";
$email = "email";
$newuser = $username . " " . $password . " " . $email . " " . $date . " " . $time;
while (!feof($file)) {
$line=fgets($file);
if (strpos($line, '//Users')!==false) {
$newline = PHP_EOL . $newuser;
}
}
fwrite($file, $newline);
fclose($file);
测试.txt 文件
//Users
//Something Else
//Something Else 2
但这只会将用户写入 .txt 文件的末尾。
非常感谢大家的帮助!解决了。