PHP:如果超过50行,则清除文本文件

时间:2013-05-13 17:21:20

标签: php

好的,我错过了什么?我试图清除文件超过50行。

这是我到目前为止所做的。

$file = 'idata.txt';
$lines = count file($file);
if ($lines > 50){
$fh = fopen( 'idata.txt', 'w' );
fclose($fh);
}

4 个答案:

答案 0 :(得分:2)

$file = 'idata.txt';
$lines = count(file($file));
if ($lines > 50){
$fh = fopen( 'idata.txt', 'w' );
fclose($fh);
}

答案 1 :(得分:0)

count 的语法错误。请按

放置此行count file($file);

count(file($file));

答案 2 :(得分:0)

如果文件真的很大,你最好循环:

$file="verylargefile.txt";
$linecount = 0;
$handle = fopen($file, "r");
while(!feof($handle)){
  $line = fgets($handle);
  $linecount++;
  if(linecount > 50)
  {
      break;
  }
}

应该完成这项工作,而不是内存中的整个文件。

答案 3 :(得分:0)

语法错误,应为count(file($file));建议不要对较大的文件使用此方法,因为它会将文件加载到内存中。因此,对于大文件,它将没有用处。以下是解决此问题的另一种方法:

$file="idata.txt";
$linecount = 0;
$handle = fopen($file, "r");
while(!feof($handle)){
  if($linecount > 50) {
      //if the file is more than 50
      fclosh($handle); //close the previous handle

      // YOUR CODE
      $handle = fopen( 'idata.txt', 'w' ); 
      fclose($handle);  
  }
  $linecount++;
}