获取文件的行数
Posted phonecom
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了获取文件的行数相关的知识,希望对你有一定的参考价值。
// 获取文件行数
function lines($fileName)
$fp = fopen($fileName, "r");
$line = 0;
while (!feof($fp))
//每次读取1M
if ($data = fread($fp, 1024 * 1024 * 1))
//计算读取到的行数
$num = substr_count($data, "\n");
$line += $num;
fclose($fp);
return $line;
以上是关于获取文件的行数的主要内容,如果未能解决你的问题,请参考以下文章