gzdeflate
(PHP 4 >= 4.0.4, PHP 5)
gzdeflate -- Deflate a string
参数
- data
The data to deflate.
- level
The level of compression. Can be given as 0 for no compression up to 9
for maximum compression. If not given, the default compression level will
be the default compression level of the zlib library.
返回值
The deflated string or FALSE if an error occurred.
例
例子 1. gzdeflate() example
<?php $compressed = gzdeflate('Compress me', 9); echo $compressed; ?>
|
|