streamWrapper::stream_write

(PHP 4 >= 4.3.2, PHP 5, PHP 7)

streamWrapper::stream_writeWrite to stream

Descrierea

public streamWrapper::stream_write ( string $data ) : int

This method is called in response to fwrite().

Notă:

Remember to update the current position of the stream by number of bytes that were successfully written.

Parametri

data

Should be stored into the underlying stream.

Notă:

If there is not enough room in the underlying stream, store as much as possible.

Valorile întoarse

Should return the number of bytes that were successfully stored, or 0 if none could be stored.

Erori/Excepții

Emite o eroare E_WARNING dacă apelul acestei metode eșuează (de ex. nu este implementată).

Notă:

If the return value is greater the length of data, E_WARNING will be emitted and the return value will truncated to its length.

A se vedea și