Home  >  Article  >  Backend Development  >  php压缩和解压缩字符串的代码

php压缩和解压缩字符串的代码

WBOY
WBOYOriginal
2016-07-25 08:44:17948browse

下面php代码通过gzcompress和gzuncompress压缩和解压缩字符串,可以设定压缩级别

  1. $str = 'Hello I am a very very very very long string';
  2. $compressed = gzcompress($str, 9);//压缩级别为9
  3. $uncompressed = gzuncompress($compressed);
  4. echo $str, "\n";
  5. echo $uncompressed, "\n";
  6. echo base64_encode($compressed), "\n";
  7. echo bin2hex($compressed), "\n";
  8. echo urlencode($compressed), "\n";
复制代码

php


Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn