Example. Open file, read lines - until EOF is reached: <?php $file = fopen("test.txt", ... while(! feof($file)) { $line = fgets($file); echo $line. "<br>"; }
確定! 回上一頁