|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2001-08-07 12:36 UTC] alindeman@php.net
[2001-08-07 13:20 UTC] alindeman@php.net
[2002-01-28 09:42 UTC] pdesjardins at kamitech dot com
[2002-06-04 04:35 UTC] mfischer@php.net
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Mon Nov 03 17:00:01 2025 UTC |
Hallo, I have a problem with the fsock-Funktions: $sock = fsockopen ($ip, $port, &$errno, &$errstr, 30); while (!feof ($sock)) { echo fgetc ($sock); flush () } fclose ($sock); This function hangs after correct output of the initial Data. (It seems that feof () ist false also on end of the $sock) Or is there an other way to check if the end is reached? By(t)e, Matthias