PHP讀取大文件

今天在博客上看到別人寫的一段PHP讀取大文件的方法:php

/** 
* 返回文件從X行到Y行的內容(支持php五、php4) * @param string $filename 文件名 * @param int $startLine 開始的行數 * @param int $endLine 結束的行數 * @return string
*/ function getFileLines($filename, $startLine = 1, $endLine=50, $method='rb') { $content = array(); $count = $endLine - $startLine; // 判斷php版本(由於要用到SplFileObject,PHP>=5.1.0) if(version_compare(PHP_VERSION, '5.1.0', '>=')){ $fp = new SplFileObject($filename, $method); $fp->seek($startLine-1);// 轉到第N行, seek方法參數從0開始計數 for($i = 0; $i <= $count; ++$i) { $content[]=$fp->current();// current()獲取當前行內容 $fp->next();// 下一行 } }else{//PHP<5.1 $fp = fopen($filename, $method); if(!$fp) return 'error:can not read file'; for ($i=1;$i<$startLine;++$i) {// 跳過前$startLine行 fgets($fp); } for($i;$i<=$endLine;++$i){ $content[]=fgets($fp);// 讀取文件行內容 } fclose($fp); } return array_filter($content); // array_filter過濾:false,null,'' }

加上下面 獲取文件行數的方法,能夠配合使用spa

/** 
 * 高效率計算文件行數
 */
function count_line($file)
{
  $fp = fopen($file, "rb");
  $i = 0;
  while(!feof($fp)) {        
    if($data = fread($fp, 1024*1024*2)){
      $num = substr_count($data, PHP_EOL);
      $i += $num;
    }
  }
  fclose($fp);
  return $i;
}
相關文章
相關標籤/搜索