1

我有一个文本文件(in.txt),其中包含多行文本。我需要搜索一个变量字符串,如果找到,删除整行,但保留其他行。我使用了下面的脚本,但它似乎摆脱了所有数据并写下了我正在搜索的内容。请有人能指出我正确的方向吗?'key' 是我正在搜索的字符串。

$key = $_REQUEST['key'];
$fc=file("in.txt");


$f=fopen("in.txt","w");


foreach($fc as $line)
{
      if (!strstr($line,$key)) 
        fputs($f,$line); 
}
fclose($f);
4

4 回答 4

4

我能想到的最简单的是

<?php

    $key = 'a';
    $filename = 'story.txt';
    $lines = file($filename); // reads a file into a array with the lines
    $output = '';

    foreach ($lines as $line) {
        if (!strstr($line, $key)) {
            $output .= $line;
        } 
    }

    // replace the contents of the file with the output
    file_put_contents($filename, $output);
于 2013-03-14T10:03:41.350 回答
1

write您已在模式下打开文件。这将删除其所有数据。

您应该创建一个新文件。将数据写入较新的。删除旧的。并重命名较新的。

OR

read以模式打开此文件。将此文件的数据复制到变量中。write再次以模式打开。并写入数据。

于 2013-03-14T09:54:54.650 回答
0

它为我工作

<?php
$key = $_REQUEST['key'];
$contents = '';
$fc=file("in.txt");
 foreach($fc as $line)
  {
    if (!strstr($line,$key))
    {
       $contents .= $line; 
     }  
  }
  file_put_contents('in.txt',$contents);
 ?>
于 2013-03-14T10:26:28.040 回答
-1
$key = $_REQUEST['key'];
$fc=file("in.txt");


$f=fopen("in_temp.txt","w");

$temp = array();
foreach($fc as $line)
{
    if (substr($line,$key) === false) 
        fwrite($f, line);
}
fclose($f);
unlink("in.txt");
rename("in_temp.txt", "in.txt");
于 2013-03-14T10:00:41.230 回答