zlib_encode

(PHP 5 >= 5.4.0, PHP 7)

zlib_encodeCompress data with the specified encoding

설명

string zlib_encode ( string $data , string $encoding [, string $level = -1 ] )

Compress data with the specified encoding.

Warning

이 함수는 현재 문서화 되어있지 않습니다; 인수 목록만을 제공합니다.

인수

data

The data to compress.

encoding

The compression algorithm. Either ZLIB_ENCODING_RAW, ZLIB_ENCODING_DEFLATE or ZLIB_ENCODING_GZIP.

level

반환값

예제

Example #1 zlib_encode() example

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

위 예제의 출력:

789ccb48cdc9c95728cf2fca4901001a0b045d

참고

add a note add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top