HttpInflateStream

(no version information, might be only in CVS)

HttpInflateStream -- HTTP Inflate Stream

Synopsis

class HttpInflateStream

Class Members

Constants

Tabel 1.

TypeNameDescription
intFLUSH_NONEno forced flush
intFLUSH_SYNCsynching flush
intFLUSH_FULLfull flush

Bemærk: Flushing usually has no effect on inflate streams.

Metoder

HttpInflateStream::factory()
HttpInflateStream::__construct()
HttpInflateStream::update()
HttpInflateStream::flush()
HttpInflateStream::finish()

Eksempler

Eksempel 1. A HttpInflateStream example

<?php
$stream
= new HttpInflateStream;
echo
$stream->update($data);
echo
$stream->finish();
?>