PHP 8.4.24 Released!

Voting

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

The Note You're Voting On

Jille at quis dot cx dot spam dot to dot my dot devnull
18 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