string gzcompress ( string $data [, int $level = -1 ] )
Compress a string
This function compress the given string using the ZLIB data format.
<?php
$compressed = gzcompress('Compress me', 9);
echo $compressed;
?>
string gzcompress ( string $data [, int $level = -1 ] )
Compress a string
This function compress the given string using the ZLIB data format.
<?php
$compressed = gzcompress('Compress me', 9);
echo $compressed;
?>
0 Comment:
Post a Comment