php8.5
Home/ Manual/ zlib / functions/ zlib_encode

zlib_encode

PHP function Edit on GitHub ✎

(PHP 5 >= 5.4.0, PHP 7, PHP 8)

Compress data with the specified encoding

Description

zlib_encode(string $data, int $encoding, int $level = -1): string|false

Compress data with the specified encoding.

Func

Parameters

data

The data to compress.

encoding

The compression algorithm. Either ZLIB_ENCODING_RAW, ZLIB_ENCODING_DEFLATE or ZLIB_ENCODING_GZIP.

level

Return Values

Examples

zlib_encode() example

php
<?php
$str = 'hello world';
$enc = zlib_encode($str, ZLIB_ENCODING_DEFLATE);
echo bin2hex($enc);
?>

The above example will output:

output
789ccb48cdc9c95728cf2fca4901001a0b045d

See Also

Source: reference/zlib/functions/zlib-encode.xml · from the official PHP manual (php/doc-en)