Eine Textdatei einlesen
Kompletten Inhalt ausgeben.
$flatfile = 'textdatei.txt'; $inhalt = file_get_contents($flatfile); echo $inhalt;
Nur Zeile 3 ausgeben.
$flatfile = 'textdatei.txt'; $datensatz = file($flatfile); echo $datensatz[3];
Letzte Zeile ausgeben.
$flatfile = 'textdatei.txt'; $letzte = count($flatfile); echo $flatfile[($letzte -1)];
php.net/.../function.file-get-contents.php