PHP Velho Oeste 2024

HttpInflateStream sınıfı

(Bir sürüm bilgisi bulunamadı; sadece SVN'de olabilir.)

Sınıf Sözdizimi

HttpInflateStream {
public void __construct ([ int $seçenekler = 0 ] )
public HttpInflateStream factory ([ int $seçenekler = 0 [, string $sınıf_adı = "HttpInflateStream" ]] )
public string finish ([ string $veri ] )
public string flush ([ string $veri ] )
public string update ( string $veri )
}

Sınıf Üyeleri

Sabitler

Türü İsmi Açıklama
int FLUSH_NONE zorla boşaltma yok
int FLUSH_SYNC eşzamanlı boşaltma
int FLUSH_FULL tamamen boşaltma

Bilginize:

Boşaltma işleminin sıkıştırılmış verinin açıldığı akımlar üzerinde hiçbir etkisi yoktur.

Örnekler

Örnek 1 - HttpInflateStream örneği

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

İçindekiler

add a note add a note

User Contributed Notes

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