关于php:计算Excel文件中的行数

Count the number of lines in an Excel File

本问题已经有最佳答案,请猛点这里访问。

Possible Duplicate:
Efficiently counting the number of lines of a text file. (200mb+)
How do I determine the end of the file using PHPExcel library in chunk loop?

我似乎无法在PHP中使用它

我正在尝试计算上传的EXcel文件中的行数

这是我所拥有的,但它总是乘以2,我想删除第一行,因为它只是标题,请帮助:

1
$countthelines= count(file($file)) -1;


将您的Excel文件转换为CSV文件并尝试以下方法:

1
$countthelines = count(file($file, FILE_SKIP_EMPTY_LINES)) - 1;