A função file () pode ler o arquivo inteiro em um array, e cada elemento em um array é uma linha correspondente no arquivo, incluindo quebras de linha.
Sintaxe
array file ( string $filename [, int $flags = 0 [, resource $context ]] )
Exemplo
<?php
print_r(file("/PhpProject/sample.txt"));
?>
Resultado
Array
(
[0] => Tutorialspoint
[1] => Tutorix
[2] => TP
)