PHP.nl

bzread

bzread

Binary safe bzip2 file read

 **bzread** resource $bz int $length
reads from the given bzip2 file pointer.

bzread

Reading stops when (uncompressed) bytes have been read or EOF is reached, whichever comes first. length

bz The file pointer. It must be valid and must point to a file successfully opened by . bzopen

length If not specified, will read 1024 (uncompressed) bytes at a time. A maximum of 8192 uncompressed bytes will be read at a time. bzread

Returns the uncompressed data, or false on error.

Voorbeeld: example

<?php

$file = "/tmp/foo.bz2";
$bz = bzopen($file, "r") or die("Couldn't open $file");

$decompressed_file = '';
while (!feof($bz)) {
  $decompressed_file .= bzread($bz, 4096);
}
bzclose($bz);

echo "The contents of $file are: <br />\n";
echo $decompressed_file;

?>

bzwrite``feof``bzopen