SplFileObject::fgets

(PHP 5 >= 5.1.0)

SplFileObject::fgetsGets line from file

Описание

public string SplFileObject::fgets ( void )

Gets a line from the file.

Список параметров

У этой функции нет параметров.

Возвращаемые значения

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

Ошибки

Throws a RuntimeException if the file cannot be read.

Примеры

Пример #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();
}
?>

Смотрите также


Участник рейтинга Тэглайн 2010