PHP8 gzinflate
(PHP 4 >= 4.0.4, PHP 5, PHP 7, PHP 8)
gzinflate — 给放气的字符串充气
说明
gzinflate(string $data, int $max_length = 0): string|false
此函数膨胀一个放气的字符串。
参数
data
由 gzdeflate() 压缩的数据。
max_length
解码数据的最大长度。
返回值
原始未压缩的数据或错误时为 false。
如果未压缩的数据大于 压缩输入长度的 32768 倍,或者,除非是 ,否则 大于可选参数 。datamax_length0max_length
示例
示例 #1 gzinflate() example
<?php
$compressed = gzdeflate('Compress me', 9);
$uncompressed = gzinflate($compressed);
echo $uncompressed;
?>
参见
- gzdeflate() - 放气字符串
- gzcompress() - 压缩字符串
- gzuncompress() - 解压缩压缩字符串
- gzencode() - 创建一个 gzip 压缩字符串