ID: 15048
Updated by: hholzgra
Reported By: [EMAIL PROTECTED]
Old Status: Open
Status: Closed
Bug Type: Documentation problem
Operating System: -
PHP Version: 4.1.1
New Comment:

fixed in CVS, thanks for the report


Previous Comments:
------------------------------------------------------------------------

[2002-01-15 08:41:22] [EMAIL PROTECTED]

not sure if this is a website problem really, but this page:

    http://www.php.net/manual/en/migration.truefalse.php

shows:

$fp = fopen($file, "r");
if ($fp == -1);
    echo("Could not open $file for reading<br>\n");
endif;
]]|
    </programlisting>
   </example>
   <example>
    <title>Migration from 2.0: return values, new code</title>
    <programlisting role="php">
<![CDATA[
$fp = @fopen($file, "r") or print("Could not open $file for
reading<br>\n");


as example d-9. I assume that's not meant to show the xml there.

------------------------------------------------------------------------



Edit this bug report at http://bugs.php.net/?id=15048&edit=1


-- 
PHP Development Mailing List <http://www.php.net/>
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to