Home >php教程 >php手册 >如何压缩一段文本后存入mysql

如何压缩一段文本后存入mysql

WBOY
WBOYOriginal
2016-06-13 10:13:431231browse

先加载模块extension=php_zlib.dll
PHP代码:--------------------------------------------------------------------------------
$x="hello world";
$x=gzcompress($x) ; //压缩
echo $x ;
echo "
";
echo gzuncompress($x); //解压
?>
--------------------------------------------------------------------------------

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