PHP fwrite()如何在某些特定行之后插入新行

时间:2013-05-16 21:30:42

标签: php newline fwrite strpos

我是新来的。
无论如何,我对fwrite()进行了研究,但是我找不到解决方案,所以我正在寻求帮助。 我想要的是f.e.在其他特定行之后添加新的文本行。 F.E.我有一个.txt文件,其中有:

//Users

//Other stuff

//Other stuff2  

现在我想做的是能够在//用户之下添加新用户,而不会触及“其他东西”和“其他东西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);

test.txt文件

//Users

//Something Else

//Something Else 2

但这只会将用户写入.txt文件的末尾。

非常感谢大家的帮助!它已经解决了。

4 个答案:

答案 0 :(得分:5)

我修改了你的代码,我认为以下是你需要的,我也把评论,下面的功能将继续添加新用户,你可以添加检查用户存在的条件。

$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."\r\n";   // I added new line after new user
$insertPos=0;  // variable for saving //Users position
while (!feof($file)) {
    $line=fgets($file);
    if (strpos($line, '//Users')!==false) { 
        $insertPos=ftell($file);    // ftell will tell the position where the pointer moved, here is the new line after //Users.
        $newline =  $newuser;
    } else {
        $newline.=$line;   // append existing data with new data of user
    }
}

fseek($file,$insertPos);   // move pointer to the file position where we saved above 
fwrite($file, $newline);

fclose($file);

答案 1 :(得分:0)

您在读取结束时编写新内容,因此必须在文件末尾写入 - 在读完所有行后光标就在那里。

要么将所有内容存储在php-variable中并最后覆盖该文件,要么使用fseek回放光标,如Robert Rozas评论所述。一旦你阅读了“其他东西” - 行,就应该这样做。

答案 2 :(得分:0)

尝试fseek:

<?php
 $file = fopen($filename, "c");
 fseek($file, -3, SEEK_END);
 fwrite($file, "whatever you want to write");
 fclose($file);
?>

PHP文档:http://php.net/manual/en/function.fseek.php

答案 3 :(得分:0)

找到'//用户'后,您需要break。你一直读到文件的末尾。