array ( 0 => 'index.php', 1 => 'PHP Manual', ), 'head' => array ( 0 => 'UTF-8', 1 => 'uk', ), 'this' => array ( 0 => 'function.zlib-encode.php', 1 => 'zlib_encode', 2 => 'Compress data with the specified encoding', ), 'up' => array ( 0 => 'ref.zlib.php', 1 => 'Zlib Функції', ), 'prev' => array ( 0 => 'function.zlib-decode.php', 1 => 'zlib_decode', ), 'next' => array ( 0 => 'function.zlib-get-coding-type.php', 1 => 'zlib_get_coding_type', ), 'alternatives' => array ( ), 'source' => array ( 'lang' => 'en', 'path' => 'reference/zlib/functions/zlib-encode.xml', ), 'history' => array ( ), ); $setup["toc"] = $TOC; $setup["toc_deprecated"] = $TOC_DEPRECATED; $setup["parents"] = $PARENTS; manual_setup($setup); contributors($setup); ?>

zlib_encode

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

zlib_encodeCompress data with the specified encoding

Опис

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

Compress data with the specified encoding.

Увага

Наразі ця функція не документована. Доступний лише список її параметрів.

Параметри

data

The data to compress.

encoding

The compression algorithm. Either ZLIB_ENCODING_RAW, ZLIB_ENCODING_DEFLATE or ZLIB_ENCODING_GZIP.

level

Значення, що повертаються

Приклади

Приклад #1 zlib_encode() example

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

Поданий вище приклад виведе:

789ccb48cdc9c95728cf2fca4901001a0b045d

Прогляньте також