Home  >  Article  >  Backend Development  >  How to compress and decompress strings in php_PHP tutorial

How to compress and decompress strings in php_PHP tutorial

WBOY
WBOYOriginal
2016-07-13 10:03:081033browse

How to compress and decompress strings in php

This article describes how to compress and decompress strings in php. Share it with everyone for your reference. The details are as follows:

The following php code compresses and decompresses strings through gzcompress and gzuncompress, and you can set the compression level

$str = 'Hello I am a very very very very long string';
$compressed = gzcompress($str, 9);//压缩级别为9
$uncompressed = gzuncompress($compressed);
echo $str, "\n";
echo $uncompressed, "\n";
echo base64_encode($compressed), "\n";
echo bin2hex($compressed), "\n";
echo urlencode($compressed), "\n";

I hope this article will be helpful to everyone’s PHP programming design.

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/969335.htmlTechArticleHow to compress and decompress strings in php. This article describes how to compress and decompress strings in php. Share it with everyone for your reference. The details are as follows: The following php code passes gzcompr...
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