PHP - Funzione feof ()
La funzione feof () controlla se "end-of-file" (EOF) ha raggiunto. Questa funzione può restituire true se si verifica un errore o è stato raggiunto EOF, altrimenti può restituire false.
Sintassi
bool feof ( resource $handle )
La funzione feof () può essere utile per attraversare dati di lunghezza sconosciuta.
Esempio
<?php
$file = fopen("/PhpProject/sample.txt", "r");
// Output a line of the file until the end is reached
while(! feof($file)) {
echo fgets($file);
}
fclose($file);
?>
Produzione
tutorialspoint
tutorix