当前位置:Gxlcms > PHP教程 > PHP压缩字符串的几种方法

PHP压缩字符串的几种方法

时间:2021-07-01 10:21:17 帮助过:17人阅读

  1. $str = 'Compress meCompress meCompress meCompress meCompress meCompress meCompress meCompress meCompress me';
  2. echo "str".strlen($str)."\n";

方法1,压缩率最低(gzip压缩算法) 生成结果可以直接写到.gz文件中

  1. $data = implode("", file("bigfile.txt"));
  2. $gzdata = gzencode($data, 9);
  3. $fp = fopen("bigfile.txt.gz", "w");
  4. fwrite($fp, $gzdata);
  5. fclose($fp);
  6. ?>

方法2,压缩率居中 –This function compress the given string using the ZLIB data format.

  1. $compressed = gzcompress('Compress me', 9);
  2. echo $compressed;
  3. ?>

方法3,压缩率并列最高

  1. $compressed = gzdeflate('Compress me', 9);
  2. echo $compressed;
  3. ?>

方法4,压缩率并列最高 — Compress a string into bzip2 encoded data

  1. $str = "sample data";
  2. $bzstr = bzcompress($str, 9);
  3. echo $bzstr;
  4. ?>

注意,没有测试压缩是否有失真的情况,压缩率高的应当更有可能还原后失真吧,根据体积情况使用吧。

大家在使用过程中,注意测试下具体效果。

人气教程排行