本文實例講述了PHP獲取文件行數的方法。分享給大家供大家參考。具體分析如下:
提供兩種實現方法,雖然第二種簡單易懂,但是第一種效率最好
第一種:
<?php $file_path = 'xxx.txt'; //文件路徑 $line = 0 ; //初始化行數 //打開文件 http://www.manongjc.com/article/1330.html $fp = fopen($file_path , 'r') or die("open file failure!"); if($fp){ //獲取文件的一行內容,注意:需要php5才支持該函數; while(stream_get_line($fp,8192,"\n")){ $line++; } fclose($fp);//關閉文件 } //輸出行數; echo $line; ?>
第二種:
<?php //http://www.manongjc.com/article/1330.html $line = count(file('filename')); echo $line; ?>
第二種方式因為要保存文件的內容,效率上會很差