텍스트 파일의 마지막 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줄을 읽습니다.