SplFileObject::fread

(PHP 5 >= 5.5.11, PHP 7)

SplFileObject::freadRead from file

Описание

public string SplFileObject::fread ( int $length )

Reads the given number of bytes from the file.

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

length

The number of bytes to read.

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

Returns the string read from the file или FALSE в случае возникновения ошибки.

Примеры

Пример #1 SplFileObject::fread() example

<?php
// Get contents of a file into a string
$filename "/usr/local/something.txt";
$file = new SplFileObject($filename"r");
$contents $file->fread($file->getSize());
?>

Примечания

Замечание:

Note that SplFileObject::fread() reads from the current position of the file pointer. Use SplFileObject::ftell() to find the current position of the pointer and SplFileObject::rewind() (or SplFileObject::fseek()) to rewind the pointer position.

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

  • fread() - Бинарно-безопасное чтение файла

Коментарии

Автор:
The manual seems to be wrong about the minimum required version PHP version, this should be PHP 5.6.0. See https://github.com/php/php-src/blob/php-5.6.0/NEWS. On PHP 5.5.9-1ubuntu4.20 I get Attempted to call an undefined method named "fread" of class "SplFileObject"
2017-03-02 19:50:06
http://php5.kiev.ua/manual/ru/splfileobject.fread.html

    Поддержать сайт на родительском проекте КГБ