-
-
$str = 'Compress meCompress meCompress meCompress meCompress meCompress meCompress meCompress meCompress me';
- echo "str".strlen($str)."\n";
复制代码
方法1,压缩率最低(gzip压缩算法) 生成结果可以直接写到.gz文件中
-
-
$data = implode("", file("bigfile.txt"));
- $gzdata = gzencode($data, 9);
- $fp = fopen("bigfile.txt.gz", "w");
- fwrite($fp, $gzdata);
- fclose($fp);
- ?>
-
复制代码
方法2,压缩率居中 –This function compress the given string using the ZLIB data format.
-
-
$compressed = gzcompress('Compress me', 9);
- echo $compressed;
- ?>
-
复制代码
方法3,压缩率并列最高
-
-
$compressed = gzdeflate('Compress me', 9);
- echo $compressed;
- ?>
-
复制代码
方法4,压缩率并列最高 — Compress a string into bzip2 encoded data
-
-
$str = "sample data";
- $bzstr = bzcompress($str, 9);
- echo $bzstr;
- ?>
-
复制代码
注意,没有测试压缩是否有失真的情况,压缩率高的应当更有可能还原后失真吧,根据体积情况使用吧。
大家在使用过程中,注意测试下具体效果。
|