如何在PHP中一起读取多行文件

时间:2019-07-19 10:28:42

标签: php

与其在php中逐行读取文件, 我想一起读取多行文件。

例如,fgets等仅逐行读取文件或整个文件。 例如file.txt:

01
sentence 01-1...
sentence 01-2...
sentence 01-3...
sentence 01-4...
02
sentence 02-1...
sentence 02-2...
sentence 02-3...
03
sentence 03-1...
sentence 03-2...
......
......

与其逐行读取文件, 阅读文件时,我想在第1组中一起阅读4个句子,在第2组中一起阅读3个句子,在第3组中一起阅读2个句子...

$file = fopen("file.txt", "r");

$char = fgets($file); 

echo $char; 

fclose($file); 

不起作用...

我希望在01之后得到4个句子,在02之后得到3个句子,而03之后得到2个句子。

0 个答案:

没有答案