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

WBOY
Release: 2016-07-25 08:44:17
Original
946 people have browsed it

下面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


source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!