Description
int
bzwrite ( resource bz, string data [, int length])
bzwrite() writes the contents of the string
data to the bzip2 file stream pointed to
by bz_ If the optional
length argument is given, writing will stop
after length (uncompressed) bytes have been written or the end of
string is reached, whichever comes first_
Ejemplo 1_ bzwrite() Example <?php
$str = "uncompressed data";
$bz = bzopen("/tmp/foo_bz2", "w");
bzwrite($bz, $str, strlen($str));
bzclose($bz);
?> |
|
See also bzread() and bzopen()_