|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[1999-07-23 09:42 UTC] sas at cvs dot php dot net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Tue Nov 04 17:00:01 2025 UTC |
Same bug as in php 3.0.11 (iss fixed in cvs 3.0.12-dev) test script: <? echo "plop<BR>\n"; flush(); $fp = fsockopen("irc.net.local", 4400); if ($fp) { set_socket_blocking($fp, 0); fputs($fp,"PASS :wisky\nSERVER Wico.net.local 1 932044265 932044265 J10 A 0 :plop\n"); while (1 < 2) { $out = fgets($fp, 1000); /* won't come heter until socjket closes or mamy many data is send */ flush(); if ($out) { echo "boe: '$out'<BR>\n"; flush(); } } } ?>