php – 如何使用SplFileObject获取行数?

前端之家收集整理的这篇文章主要介绍了php – 如何使用SplFileObject获取行数?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
$file = new SplFileObject('/path/to/file.txt');

如何在SplFileObject中找到文件中的行数?

为什么不简单地使用文件处理程序并在 this question中执行?它简单,快速,高效.

如果你绝对必须使用spl,你可以这样做

$file = new SplFileObject("/path/to/file.txt");
$i = 0;
while (!$file->eof()) {
    $i++;
    $file->next();
}
print "file has " . $i . " lines";
原文链接:https://www.f2er.com/php/133922.html

猜你在找的PHP相关文章