(No version information available, might be only in CVS)
HttpInflateStream — Décompression d'un flux HTTP
class HttpInflateStream
Tableau 115.
Type | Nom | Description |
---|---|---|
int | FLUSH_NONE | pas de flush forcé |
int | FLUSH_SYNC | synchronisation du flush |
int | FLUSH_FULL | flush complet |
Note: Le flush n'a habituellement aucun effet sur les flux décompressés.
HttpInflateStream ::factory() |
HttpInflateStream ::__construct() |
HttpInflateStream ::update() |
HttpInflateStream ::flush() |
HttpInflateStream ::finish() |
Exemple 1022. Exemple avec HttpInflateStream
<?php
$stream = new HttpInflateStream;
echo $stream->update($data);
echo $stream->finish();
?>