The HttpInflateStream class

(Ingen versionsoplysninger tilgængelige, findes måske kun i SVN)

Klasse synopsis

HttpInflateStream {
public __construct ([ int $flags = 0 ] )
public HttpInflateStream factory ([ int $flags = 0 [, string $class_name = "HttpInflateStream" ]] )
public string finish ([ string $data ] )
public string flush ([ string $data ] )
public string update ( string $data )
}

Class Members

Constants

Type Name Description
int FLUSH_NONE no forced flush
int FLUSH_SYNC synching flush
int FLUSH_FULL full flush

Note:

Flushing usually has no effect on inflate streams.

Eksempler

Eksempel #1 A HttpInflateStream example

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

Indholdsfortegnelse

add a note add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top