   #PHP Manual Bzip2 Compression Functions bzcompress bzerrno

   PHP Manual
   Prev  Next
   ______________________________________________________________________

                                 bzdecompress

   (4.0.4 - 4.3.2 only)
   bzdecompress -- Decompresses bzip2 encoded data

Description

   string bzdecompress ( string source [, int small])

   bzdecompress() decompresses the source string containing bzip2 encoded
   data and returns it. If the optional parameter small is TRUE, an
   alternative decompression algorithm will be used which uses less
   memory (the maximum memory requirement drops to around 2300K) but
   works at roughly half the speed. See the bzip2 documentation for more
   information about this feature.

   Example 1. bzdecompress()
   <?php
   $start_str = "This is not an honest face?";
   $bzstr = bzcompress($start_str);
   echo "Compressed String: ";
   echo $bzstr;
   echo "\n<br />\n";
   $str = bzdecompress($bzstr);
   echo "Decompressed String: ";
   echo $str;
   echo "\n<br />\n";
   ?>

   See also bzcompress().
   ______________________________________________________________________

   Prev       Home    Next
   bzcompress  Up  bzerrno
