irchtml Wed Feb 25 05:32:50 2004 EDT
Modified files:
/phpdoc/en/reference/bzip2/functions bzread.xml
Log:
fixed example
http://cvs.php.net/diff.php/phpdoc/en/reference/bzip2/functions/bzread.xml?r1=1.4&r2=1.5&ty=u
Index: phpdoc/en/reference/bzip2/functions/bzread.xml
diff -u phpdoc/en/reference/bzip2/functions/bzread.xml:1.4
phpdoc/en/reference/bzip2/functions/bzread.xml:1.5
--- phpdoc/en/reference/bzip2/functions/bzread.xml:1.4 Sun Dec 14 18:06:28 2003
+++ phpdoc/en/reference/bzip2/functions/bzread.xml Wed Feb 25 05:32:48 2004
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.4 $ -->
+<!-- $Revision: 1.5 $ -->
<!-- splitted from ./en/functions/bzip2.xml, last change in rev 1.1 -->
<refentry id="function.bzread">
<refnamediv>
@@ -31,7 +31,7 @@
<?php
$file = "/tmp/foo.bz2";
-$bz = bzopen($file", "r") or die("Couldn't open $file");
+$bz = bzopen($file, "r") or die("Couldn't open $file");
$decompressed_file = '';
while (!feof($bz)) {