>  기사  >  백엔드 개발  >  PHP가 코드 줄 수와 파일 수를 계산하는 방법에 대한 자세한 예

PHP가 코드 줄 수와 파일 수를 계산하는 방법에 대한 자세한 예

藏色散人
藏色散人앞으로
2022-12-27 16:49:515028검색

이 글은 주로 PHP 통계 관련 지식을 소개하고, PHP를 사용하여 코드 줄 수와 파일 수를 계산하는 방법에 대해 설명합니다. 도움이 필요한 친구들에게 도움이 되길 바랍니다!

PHP를 사용하여 코드 줄 수와 파일 수 계산

때로는 코드 줄 수와 파일 수를 계산해야 하는 경우가 있습니다(예: 소프트 카피 신청). 통계용 PHP.

먼저 PHP 환경 변수를 설정하세요

  • Windows:

내 컴퓨터->속성->고급 시스템 설정->PATH PHP.exe가 있는 디렉터리를 추가하세요

  • Linux 환경 변수 설정:

vim /etc/profile
PATH="$PATH:/root/php/bin/"

프로젝트 폴더에서 다음 코드를 실행

<?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[] = "./";
$obj = new TotalCode();
$obj->main($dirList);
?>

Result

코드 실행

php count.php

Success

TotalCodeInfo Object                             
(                                                
    [fileCount:TotalCodeInfo:private] => 1094    
    [lineCount:TotalCodeInfo:private] => 419702  
)

추천 학습: "PHP Video Tutorial"

위 내용은 PHP가 코드 줄 수와 파일 수를 계산하는 방법에 대한 자세한 예의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

성명:
이 기사는 learnku.com에서 복제됩니다. 침해가 있는 경우 admin@php.cn으로 문의하시기 바랍니다. 삭제