当前位置:  开发笔记 > 编程语言 > 正文

计算PHP项目中的行数

如何解决《计算PHP项目中的行数》经验,为你挑选了5个好方法。

你知道任何可以计算PHP项目中所有代码行的工具吗?



1> Henrik Paul..:

在POSIX操作系统(例如Linux或OS X)上,您可以将以下内容写入Bash shell:

wc -l `find . -iname "*.php"`

这将计算当前目录和子目录中所有php文件中的行.(请注意,那些单个'引号'是反引号,而不是实际的单引号)


如果你在Windows上,你可以下载并安装Cygwin,并做同样的事情.由于Mac现在也运行在BSD操作系统之上,我认为这是明确的答案.

2> Joel Lord..:

我在自己的一个项目中做了一个小脚本.只需在项目根目录的php页面上使用以下代码即可.该脚本将对子文件夹进行递归检查.

";
echo $totalLines - $fileCounter['gen']['commentedLines'] - $fileCounter['gen']['blankLines'] ." actual lines of code (not a comment or blank line)

"; foreach($fileCounter['gen'] as $key=>$val) { echo ucfirst($key).":".$val."
"; } echo "
"; foreach($fileCounter as $key=>$val) { if(!is_array($val)) echo strtoupper($key).":".$val." file(s)
"; } function countLines($dir, &$fileCounter) { $_allowedFileTypes = "(html|htm|phtml|php|js|css|ini)"; $lineCounter = 0; $dirHandle = opendir($dir); $path = realpath($dir); $nextLineIsComment = false; if($dirHandle) { while(false !== ($file = readdir($dirHandle))) { if(is_dir($path."/".$file) && ($file !== '.' && $file !== '..')) { $lineCounter += countLines($path."/".$file, $fileCounter); } elseif($file !== '.' && $file !== '..') { //Check if we have a valid file $ext = _findExtension($file); if(preg_match("/".$_allowedFileTypes."$/i", $ext)) { $realFile = realpath($path)."/".$file; $fileHandle = fopen($realFile, 'r'); $fileArray = file($realFile); //Check content of file: for($i=0; $i


我对该代码段进行了大量修改,并将其发布到github。它修复了所有警告,并允许在计数期间排除目录。https://raw.githubusercontent.com/danielson317/php-code-stats/master/code_stats.php

3> marcog..:

SLOCCount是一个很棒的工具,可以为大量语言生成行计数报告.它还通过产生其他相关统计数据(例如预期的开发者成本)进一步发展.

这是一个例子:

$ sloccount .
Creating filelist for experimental
Creating filelist for prototype
Categorizing files.
Finding a working MD5 command....
Found a working MD5 command.
Computing results.


SLOC    Directory   SLOC-by-Language (Sorted)
10965   experimental    cpp=5116,ansic=4976,python=873
832     prototype       cpp=518,tcl=314


Totals grouped by language (dominant language first):
cpp:           5634 (47.76%)
ansic:         4976 (42.18%)
python:         873 (7.40%)
tcl:            314 (2.66%)




Total Physical Source Lines of Code (SLOC)                = 11,797
Development Effort Estimate, Person-Years (Person-Months) = 2.67 (32.03)
 (Basic COCOMO model, Person-Months = 2.4 * (KSLOC**1.05))
Schedule Estimate, Years (Months)                         = 0.78 (9.33)
 (Basic COCOMO model, Months = 2.5 * (person-months**0.38))
Estimated Average Number of Developers (Effort/Schedule)  = 3.43
Total Estimated Cost to Develop                           = $ 360,580
 (average salary = $56,286/year, overhead = 2.40).
SLOCCount, Copyright (C) 2001-2004 David A. Wheeler
SLOCCount is Open Source Software/Free Software, licensed under the GNU GPL.
SLOCCount comes with ABSOLUTELY NO WARRANTY, and you are welcome to
redistribute it under certain conditions as specified by the GNU GPL license;
see the documentation for details.
Please credit this data as "generated using David A. Wheeler's 'SLOCCount'."



4> Shabbyrobe..:

不幸的是,SLOCCount有点长,对于PHP项目来说是一个痛苦的问题,特别是那些有vendor你不想要的嵌套目录的项目.此外,它会为每个没有结束标记的PHP文件发出警告(如果您不混合使用HTML和PHP,则应该是所有这些文件都应该是这样).

CLOC是一个更现代化的替代方案,可以完成SLOCCount所做的一切(编辑:几乎所有内容),但也支持一个--exclude-dir选项,它不会受到上述关闭标记问题的影响.它还会发出一个SQLite数据库,您可以从中提取一些非常高级的指标.



5> weston..:

在命令行的窗口上:

findstr /R /N "^" *.php | find /C ":"

感谢这篇文章.

要包含子目录,请使用\s :

findstr /s /R /N "^" *.php | find /C ":"

推荐阅读
大大炮
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有