http://www.php.net/manual/en/ref.sockets.ph

> I just read something about sock warnings this morning.   It said
> sometimes they drop off, and to ignore the warnings, but capture the
> errors.
>
>> I get this output:
>>
>> PHP Warning:  socket_read() unable to read from socket [35]: Resource
>> temporarily unavailable in /Users/rene/Sites/gpspolice/titan/cr.php on
>> line 63
>>
>>  From this code:
>>
>> do {
>>      socket_set_block($socket);
>>      socket_set_option($socket,SOL_SOCKET,SO_RCVTIMEO,$timeout);
>>      while(($buf = socket_read($socket,128,PHP_BINARY_READ)) !== false) {
>>
>>      [...]
>>
>> And it's failing at "while". Any ideas?
>>
>> ...Rene

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

Reply via email to