Heim >Backend-Entwicklung >PHP-Tutorial >PHP获取文件行数的方法_PHP教程

PHP获取文件行数的方法_PHP教程

WBOY
WBOYOriginal
2016-07-13 09:51:18789Durchsuche

PHP获取文件行数的方法

 提供两种实现方法,虽然第二种简单易懂,但是第一种效率最好

第一种:

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

$file_path = 'xxx.txt'; //文件路径

$line = 0 ; //初始化行数

//打开文件

$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;

?>

第二种:

1

2

3

4

$line = count(file('filename'));

echo $line;

?>

第二种方式因为要保存文件的内容,效率上会很差

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/1014281.htmlTechArticlePHP获取文件行数的方法 提供两种实现方法,虽然第二种简单易懂,但是第一种效率最好 第一种: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 ?php $file_path...
Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn