ID:               19158
 Updated by:       [EMAIL PROTECTED]
 Reported By:      [EMAIL PROTECTED]
-Status:           Feedback
+Status:           Closed
 Bug Type:         Documentation problem
 Operating System: windows
 PHP Version:      4.2.2
 New Comment:

This bug has been fixed in CVS.

In case this was a PHP problem, snapshots of the sources are packaged
every three hours; this change will be in the next snapshot. You can
grab the snapshot at http://snaps.php.net/.
 
In case this was a documentation problem, the fix will show up soon at
http://www.php.net/manual/.

In case this was a PHP.net website problem, the change will show
up on the PHP.net site and on the mirror sites in short time.
 
Thank you for the report, and for helping us make PHP better.

User reports (via email) that the problem has been fixed.


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

[2002-10-31 13:58:19] [EMAIL PROTECTED]

Does the problem still exist in the latest version (10th edition) of
the chm manual?

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

[2002-08-28 17:31:32] [EMAIL PROTECTED]

I have found a bug on page streams.basics.html
[chm date: 2002-08-14]...

The following code is displayed so that certain lines overlap each
other.

php_stream * stream = php_stream_open_wrapper("http://www.php.net";,
"rb", REPORT_ERRORS, NULL);
if (stream) {
   while(!php_stream_eof(stream)) {
       char buf[1024];
       
       if (php_stream_gets(stream, buf, sizeof(buf))) {
           printf(buf);
       } else {
           break;
       }
   }
   php_stream_close(stream);
}

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


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


-- 
PHP Documentation Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to