함수 소개:
file_get_contents()
전체 파일을 문자열로 읽어옵니다. file_get_contents()
把整个文件读入一个字符串中。
explode()
函数使用一个字符串分割另一个字符串,并返回由字符串组成的数组。
count()
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 중국어 웹사이트의 기타 관련 기사를 참조하세요!