php統計檔中的程式碼行數

王林
發布: 2023-04-07 21:38:01
原創
3008 人瀏覽過

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.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板
關於我們 免責聲明 Sitemap
PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!