php收集多个统计数据(PHP实现统计代码行数小工具)
类别:编程学习 浏览量:2539
时间:2021-10-23 10:15:46 php收集多个统计数据
PHP实现统计代码行数小工具本文实例为大家分享了PHP实现统计代码行数小工具,供大家参考,具体内容如下
为了方面统计编程代码行数,做了一个小工具。
自动统计指定目录以及目录下的所有文件。
|
<?php class TotalCode { /** * 统计当前文件有多少行代码, * @return TotalCodeInfo */ 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 ; } /** * 统计当前目录下(含子目录) * 有多少文件,以及多少行代码 * * totalInfo = array( "fileCount"=>?, "lineCount"=>? ); * * @return TotalCodeInfo */ public function totalByDir( $dirName ) { $fileList = scandir( $dirName ); $totalCodeDir = new TotalCodeInfo(); foreach ( $fileList as $fileName ) { if ( $fileName == "." || $fileName == ".." ) continue ; $fullFileName = $dirName . "/" . $fileName ; if ( is_file ( $fullFileName )) { $totalCodeSub = $this ->totalByFile( $dirName . "/" . $fileName ); } else if ( is_dir ( $fullFileName )) { $totalCodeSub = $this ->totalByDir( $dirName . "/" . $fileName ); } else { $totalCodeSub = new TotalCodeInfo(); } $totalCodeDir ->increaseByOther( $totalCodeSub ); } return $totalCodeDir ; } public function totalByDirOrFile( $dirOrFileName ) { if ( is_dir ( $dirOrFileName )) { return $this ->totalByDir( $dirOrFileName ); } else if ( is_file ( $dirOrFileName )) { return $this ->totalByFile( $dirOrFileName ); } else { return new TotalCodeInfo(); } } public function test() { $re = $this ->totalByDir( "/export/www/pm_web/configs" ); var_dump( $re ); } public function main( $dirList ) { $totalCodeAll = new TotalCodeInfo(); foreach ( $dirList as $dirName ) { $totalCodeSub = $this ->totalByDirOrFile( $dirName ); $totalCodeAll ->increaseByOther( $totalCodeSub ); } print_r( $totalCodeAll ); } } class TotalCodeInfo { private $fileCount = 0; private $lineCount = 0; public function getFileCount() { return $this ->fileCount; } public function getLineCount() { return $this ->lineCount; } public function setFileCount( $fileCount ) { $this ->fileCount = $fileCount ; return $this ; } public function setLineCount( $lineCount ) { $this ->lineCount = $lineCount ; return $this ; } /** * 累加 */ public function increaseByOther( $totalCodeInfo ) { $this ->setFileCount( $this ->fileCount + $totalCodeInfo ->getFileCount()); $this ->setLineCount( $this ->lineCount + $totalCodeInfo ->getLineCount()); return $this ; } } $dirList = array (); $dirList [] = "/your/path" ; $obj = new TotalCode(); $obj ->main( $dirList ); |
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持开心学习网。
原文链接:https://blog.csdn.net/oushunbao/article/details/84794069
您可能感兴趣
- thinkphp标签详解(thinkphp整合系列之极验滑动验证码geetest功能)
- think php上传服务器(ThinkPHP5+UEditor图片上传到阿里云对象存储OSS功能示例)
- php大量数据计算有什么技巧(PHP各种常见经典算法总结排序、查找、翻转等)
- phpstudy数据库搭建教程交流(phpStudy V8如何修改数据库root密码)
- phpzip压缩原理(PHP生成zip压缩包的常用方法示例)
- php最好的探针(php探针不显示内存解决方法)
- phpstudy怎么修改mysql版本(PhpStudy集成环境升级MySQL数据库版本的方法)
- php标签怎么写(php 使用mpdf实现指定字段配置字体样式的方法)
- php代码最可靠的加密方式(php DES加密算法实例分析)
- php添加到数组的用法(详解PHP 7.4 中数组延展操作符语法知识点)
- thinkphp导入excel(Yii框架使用PHPExcel导出Excel文件的方法分析改进版)
- php自定义函数返回多少个值(PHP7导出Excel报ERR_EMPTY_RESPONSE解决方法)
- php解压压缩包(PHP 实现文件压缩解压操作的方法)
- thinkphp权限认证怎么用(ThinkPHP框架结合Ajax实现用户名校验功能示例)
- php批量导出所有数据库(php快速导入大量数据的实例方法)
- phpstudy默认不支持64位php的解决方法(phpstudy默认不支持64位php的解决方法)
- 雄藩崛起 奇兵队与幕末长州藩军事改革(雄藩崛起奇兵队与幕末长州藩军事改革)
- 九月初,爱如蜜糖,甜到心扉,迷恋彼此,一日不见兮,思之若狂(九月初爱如蜜糖)
- ()
- 对你思念入骨的女人,跟你见面时会有这几种表现,藏都藏不住(对你思念入骨的女人)
- 纳兰性德绝美作,一场重逢,成就最后一首称得上惊艳的《如梦令》(纳兰性德绝美作)
- 如何快速赚钱(如何快速赚钱方法真实有效)
热门推荐
排行榜
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9