PHP Doku:: Set read file buffering on the given stream - function.stream-set-read-buffer.html

Verlauf / Chronik / History: (1) anzeigen

Sie sind hier:
Doku-StartseitePHP-HandbuchFunktionsreferenzSonstige GrunderweiterungenStreamsStream Funktionenstream_set_read_buffer

Ein Service von Reinhard Neidl - Webprogrammierung.

Stream Funktionen

<<stream_set_blocking

stream_set_timeout>>

stream_set_read_buffer

(PHP 5 >= 5.3.3)

stream_set_read_bufferSet read file buffering on the given stream

Beschreibung

int stream_set_read_buffer ( resource $stream , int $buffer )

Sets the read buffer. It's the equivalent of stream_set_write_buffer(), but for read operations.

Parameter-Liste

stream

The file pointer.

buffer

The number of bytes to buffer. If buffer is 0 then read operations are unbuffered. This ensures that all reads with fread() are completed before other processes are allowed to write to that output stream.

Rückgabewerte

Returns 0 on success, or EOF if the request cannot be honored.

Siehe auch


Keine BenutzerBeiträge.
- Beiträge aktualisieren...



PHP Powered Diese Seite bei php.net
The PHP manual text and comments are covered by the Creative Commons Attribution 3.0 License © the PHP Documentation Group - Impressum - mail("TO:Reinhard Neidl",...)