略微加速

PHP官方手册 - 互联网笔记

PHP - Manual: zlib_encode

2024-05-02

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($strZLIB_ENCODING_DEFLATE);
echo 
bin2hex($enc);
?>

以上例程会输出:

789ccb48cdc9c95728cf2fca4901001a0b045d

参见

add a noteadd a note

User Contributed Notes

There are no user contributed notes for this page.

官方地址:https://www.php.net/manual/en/function.zlib-encode.php

北京半月雨文化科技有限公司.版权所有 京ICP备12026184号-3