PHP Doku:: Write to stream - streamwrapper.stream-write.html

Verlauf / Chronik / History: (1) anzeigen

Sie sind hier:
Doku-StartseitePHP-HandbuchFunktionsreferenzSonstige GrunderweiterungenStreamsThe streamWrapper classstreamWrapper::stream_write

Ein Service von Reinhard Neidl - Webprogrammierung.

The streamWrapper class

<<streamWrapper::stream_tell

streamWrapper::unlink>>

streamWrapper::stream_write

(PHP 4 >= 4.3.2, PHP 5)

streamWrapper::stream_writeWrite to stream

Beschreibung

public int streamWrapper::stream_write ( string $data )

This method is called in response to fwrite().

Hinweis:

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

Parameter-Liste

data

Should be stored into the underlying stream.

Hinweis:

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

Rückgabewerte

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

Fehler/Exceptions

Wirft E_WARNING, wenn der Aufruf dieser Methode fehlschlug (z.B. weil sie nicht implementiert ist).

Hinweis:

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

Siehe auch

  • fwrite() - Schreibt Binärdaten in eine Datei


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",...)