教程集 www.jiaochengji.com
教程集 >  脚本编程  >  php  >  正文 php统计文件中的代码行数

php统计文件中的代码行数

发布时间:2020-10-20   编辑:jiaochengji.com
教程集为您提供php统计文件中的代码行数等资源,欢迎您收藏本站,我们将为您提供最新的php统计文件中的代码行数资源

函数介绍:

file_get_contents() 把整个文件读入一个字符串中。

explode() 函数使用一个字符串分割另一个字符串,并返回由字符串组成的数组。

count() 函数返回数组中元素的数目。

在线视频教程分享:php视频教程

示例如下:

public function totalByFile($fullFileName) {
 $fileContent = file_get_contents($fullFileName);
 $lines = explode("\n", $fileContent);
 $lineCount = count($lines);
  
 for($i = $lineCount -1; $i > 0; $i -= 1) {
  $line = $lines[$i];
  if ($line != "") break;
  $lineCount -= 1; //最后几行是空行的要去掉。
 }
 unset($fileContent);
 unset($lines);
  
 $totalCodeInfo = new TotalCodeInfo();
 $totalCodeInfo->setFileCount(1);
 $totalCodeInfo->setLineCount($lineCount);
 return $totalCodeInfo;
 }

相关文章教程推荐:php入门教程

以上就是php统计文件中的代码行数的详细内容,更多请关注教程集其它相关文章!

  • 本文原创发布教程集,转载请注明出处,感谢您的尊重!
  • 您可能感兴趣的文章:
    php 统计字数(支持中英文)的实现代码
    php 统计文件行数的代码
    php 网站流量统计的原理
    php统计文件中的代码行数
    php与shell大文件数据统计与排序方法
    php网站访问统计代码一例
    php文件的默认文件拓展名
    PHP二维数组元素个数的统计方法
    php 图形计数器实例代码(附源码)
    img标签添加php文件记录页面访问数据

    [关闭]
    ~ ~