PHP Doku:: The HttpDeflateStream class - class.httpdeflatestream.html

Verlauf / Chronik / History: (1) anzeigen

Sie sind hier:
Doku-StartseitePHP-HandbuchFunktionsreferenzSonstige DiensteHTTPThe HttpDeflateStream class

Ein Service von Reinhard Neidl - Webprogrammierung.

HTTP

<<Options usable with the HttpRequest class and request functions

HttpDeflateStream::__construct>>


UnterSeiten:

The HttpDeflateStream class

Klassenbeschreibung

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

Class Members

Vordefinierte Konstanten

Type Name Description
int TYPE_GZIP gzip encoding
int TYPE_ZLIB zlib AKA deflate encoding
int TYPE_RAW raw deflate encoding
int LEVEL_DEF default compression level
int LEVEL_MIN minimum compression level
int LEVEL_MAX maximum compression level
int STRATEGY_DEF default strategy
int STRATEGY_FILT filtered strategy
int STRATEGY_HUFF Huffman strategy
int STRATEGY_RLE RLE strategy
int STRATEGY_FIXED fixed strategy
int FLUSH_NONE no forced flush
int FLUSH_SYNC synching flush
int FLUSH_FULL full flush

Beispiele

Beispiel #1 A HttpDeflateStream example

<?php
$stream 
= new HttpDeflateStream(
    
HttpDeflateStream::TYPE_GZIP |
    
HttpDeflateStream::LEVEL_MAX |
    
HttpDeflateStream::FLUSH_SYNC);

echo 
$stream->update($data);
echo 
$stream->finish();
?>

Inhaltsverzeichnis


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