JavaScript Editor Javascript debugger     Website design 


HttpInflateStream

HTTP Inflate Stream ()

Synopsis

class HttpInflateStream

Class Members

Constants

Table 117. 

TypeNameDescription
intFLUSH_NONEno forced flush
intFLUSH_SYNCsynching flush
intFLUSH_FULLfull flush


Note:

Flushing usually has no effect on inflate streams.

Examples

Example 874. A HttpInflateStream example

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