Computer >> 컴퓨터 >  >> 프로그램 작성 >> PHP

PHP에서 텍스트 파일의 마지막 5줄만 읽는 방법은 무엇입니까?

<시간/>

텍스트 파일의 마지막 5줄만 읽으려면 코드는 다음과 같습니다. -

예시

$file = file("filename.txt");
for ($i = max(0, count($file)-6); $i < count($file); $i++) {
   echo $file[$i] . "\n";
}

출력

이것은 다음과 같은 출력을 생성합니다 -

Given that the file has more than 5 lines of text, the last 5 lines of the text file will be displayed.

파일을 열고 파일의 줄 수를 세고 마지막 줄부터 5줄을 읽습니다.