SplFileObject::fgets

Gets line from file

Beschreibung

public string SplFileObject::fgets ( void )

Gets a line from the file.

Parameter-Liste

Diese Funktion hat keine Parameter.

Rückgabewerte

Returns a string containing the next line from the file, or FALSE on error.

Fehler/Exceptions

Throws a RuntimeException if the file cannot be read.

Beispiele

Beispiel #1 SplFileObject::fgets example

This example simply outputs the contents of file.txt line-by-line.

<?php
$file 
= new SplFileObject("file.txt");
while (!
$file->eof()) {
    echo 
$file->fgets();
}
?>

Siehe auch

  • fgets
  • SplFileObject::fgetss
  • SplFileObject::fgetc
  • SplFileObject::current