主頁 > 知識庫 > PHP實現(xiàn)統(tǒng)計代碼行數(shù)小工具

PHP實現(xiàn)統(tǒng)計代碼行數(shù)小工具

熱門標(biāo)簽:外呼系統(tǒng)撥打暫時無法接通 長春人工外呼系統(tǒng)服務(wù)商 仁和怎么申請400開頭的電話 哪里辦理400電話 高德地圖標(biāo)注家 江西手機(jī)自動外呼防封系統(tǒng)是什么 怎么向銷售公司推銷外呼系統(tǒng) 廣東地市地圖標(biāo)注 廣州防封卡外呼系統(tǒng)多少錢一個月

本文實例為大家分享了PHP實現(xiàn)統(tǒng)計代碼行數(shù)小工具,供大家參考,具體內(nèi)容如下

為了方面統(tǒng)計編程代碼行數(shù),做了一個小工具。

自動統(tǒng)計指定目錄以及目錄下的所有文件。

?php
 
class TotalCode {
 
 /**
 * 統(tǒng)計當(dāng)前文件有多少行代碼,
 * @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;
 }
 
 /**
 * 統(tǒng)計當(dāng)前目錄下(含子目錄)
 * 有多少文件,以及多少行代碼
 * 
 * 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);

以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。

您可能感興趣的文章:
  • PHP統(tǒng)計代碼行數(shù)的小代碼
  • php 廣告點擊統(tǒng)計代碼(php+mysql)
  • php+memcache實現(xiàn)的網(wǎng)站在線人數(shù)統(tǒng)計代碼
  • php利用cookie實現(xiàn)訪問次數(shù)統(tǒng)計代碼
  • PHP遞歸統(tǒng)計系統(tǒng)中代碼行數(shù)

標(biāo)簽:黔東 文山 海北 湘西 惠州 梅河口 廈門 濮陽

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《PHP實現(xiàn)統(tǒng)計代碼行數(shù)小工具》,本文關(guān)鍵詞  PHP,實現(xiàn),統(tǒng)計,代碼,行數(shù),;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請?zhí)峁┫嚓P(guān)信息告之我們,我們將及時溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《PHP實現(xiàn)統(tǒng)計代碼行數(shù)小工具》相關(guān)的同類信息!
  • 本頁收集關(guān)于PHP實現(xiàn)統(tǒng)計代碼行數(shù)小工具的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章