demo_func_filesystem_feof.php:
<!DOCTYPE html> <html> <body> <?php $file = fopen("test.txt","r"); //Output lines until EOF is reached while(! feof($file)) { $line = fgets($file); echo $line. "<br>"; } fclose($file); ?> </body> </html>