©
本文档使用 PHP中文网手册 发布
(PECL pecl_http >= 0.21.0)
$flags
= 0
] )$flags
= 0
[, string $class_name
= "HttpInflateStream"
]] )$data
] )$data
] )$data
)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.
Example #1 A HttpInflateStream example
<?php
$stream = new HttpInflateStream ;
echo $stream -> update ( $data );
echo $stream -> finish ();
?>