deflate_add
(PHP 7, PHP 8)
deflate_add — Incrementally deflate data
Description
Incrementally deflates data in the specified context.
Parameters
contextA context created with deflate_init().
dataA chunk of data to compress.
flush_modeOne of
ZLIB_BLOCK,ZLIB_NO_FLUSH,ZLIB_PARTIAL_FLUSH,ZLIB_SYNC_FLUSH(default),ZLIB_FULL_FLUSH,ZLIB_FINISH. Normally you will want to setZLIB_NO_FLUSHto maximize compression, andZLIB_FINISHto terminate with the last chunk of data. See the » zlib manual for a detailed description of these constants.
Return Values
Returns a chunk of compressed data, or false on failure.
Errors/Exceptions
If invalid arguments are given, an error of level E_WARNING is generated.
Changelog
| Version | Description |
|---|---|
| 8.0.0 | context expects a DeflateContext instance now; previously, a resource was expected. |
See Also
- deflate_init() - Initialize an incremental deflate context
↑ and ↓ to navigate • Enter to select • Esc to close • / to open