使用php替换文本文件中的特定行?

时间:2012-11-09 19:45:16

标签: php file replace line fwrite

我有一个文本文件,将lastname, first name, address, state, etc存储为带有|分隔符的字符串,并且每条记录都在一个单独的行中。

我有一个部分,我需要将每条记录存储在一个新的行上,并且它的工作正常;但是,现在我需要能够返回并更新特定行上的名称或地址,我无法让它工作。

how to replace a particular line in a text file using php?帮助了我,但我还没到那儿。这会覆盖整个文件而丢失记录。任何帮助表示赞赏!

经过一些编辑似乎现在正在运作。我正在调试以查看是否有任何错误。

$string= implode('|',$contact);   

$reading = fopen('contacts.txt', 'r');
$writing = fopen('contacts.tmp', 'w');

$replaced = false;

while (!feof($reading)) {
 $line = fgets($reading);

  if(stripos($line, $lname) !== FALSE)  {           
if(stripos($line, $fname) !== FALSE) {  
    $line = "$string";
    $replaced = true;
}       
   }

  fwrite($writing, "$line");
  //fputs($writing, $line);
 }
fclose($reading); fclose($writing);

// might as well not overwrite the file if we didn't replace anything
if ($replaced) 
{
  rename('contacts.tmp', 'contacts.txt');
} else {
 unlink('contacts.tmp');
}   

1 个答案:

答案 0 :(得分:2)

您似乎有一个csv格式的文件。 PHP可以使用fgetcsv()http://php.net/manual/de/function.fgetcsv.php

来处理这个问题
if (($handle = fopen("contacts.txt", "r")) !== FALSE) {
    $data = fgetcsv($handle, 1000, '|')
    /* manipulate $data array here */
}

fclose($handle);

所以你得到一个可以操作的数组。在此之后,您可以使用fputcsv http://www.php.net/manual/de/function.fputcsv.php

保存文件
$fp = fopen('contacts.tmp', 'w');

foreach ($data as $fields) {
    fputcsv($fp, $fields);
}

fclose($fp);

嗯,在Asad的评论之后,还有另一个简单的答案。只需在附加模式http://de3.php.net/manual/en/function.fopen.php中打开文件:

$writing = fopen('contacts.tmp', 'a');