php计算文件行数
php计算文件行数 [代码片段(15行)]
<?php $lines = 0; if ($fh = fopen('data.txt','r')) { while (! feof($fh)) { if (fgets($fh)) { $lines++; } } } print $lines; ?>
- 上一篇:php检测客户端请求是否是ajax发起的请求
- 下一篇:php class定义
精彩图集
精彩文章
<?php $lines = 0; if ($fh = fopen('data.txt','r')) { while (! feof($fh)) { if (fgets($fh)) { $lines++; } } } print $lines; ?>
@CopyRight 2002-2008, 1SOHU.COM, Inc. All Rights Reserved QQ:1010969229