Voting

: max(three, one)?
(Example: nine)

The Note You're Voting On

Jille at quis dot cx dot spam dot to dot my dot devnull
17 years ago
Warning!

the example show above is _not_ working in every case!
This example will continue reading until there is no more data:

<?PHP
$bz
=bzopen('foo.bz2', 'r');
$data="";
do {
$line=bzread($bz, 8092);
if(
$line!==false)
$data.=$line;
}
while(
$line);
bzclose($bz);
?>

<< Back to user notes page

To Top