Reading a file a line at a time : fgets « File Directory « PHP






Reading a file a line at a time

 
<?
$fh = fopen('people.txt','rb');
for ($line = fgets($fh); ! feof($fh); $line = fgets($fh)) {
    $line = trim($line);
    $info = explode('|', $line);
    print '<li><a href="mailto:' . $info[0] . '">' . $info[1] ."</li>\n";
}
fclose($fh);
?>
//people.txt

a@example.com|Alice
b@example.org|Bill
c@example.com|Charlie
d@example.com|Lewis
  
  








Related examples in the same category

1.Checking for an error from fopen(), fgets(), or fclose()
2.Counting paragraphs in a file
3.Counting records in a file
4.Creating and Using a File Class
5.Reading a compressed file
6.fgets() function returns a string read from a file.
7.fgets.php
8.Processing a list of books
9.Processing each word in a file