On 8 Mar 2004 Phil Ewington - 43 Plc wrote: > Can anyone tell me the best way to avoid errors using fsockopen(). I have > tried wrapping the function call in a conditional statement, and have also > tried calling the function and then testing the return.
Here's an approach I have used to avoid any error messages at all -- presumably you could also set a flag in the error handler to indicate what happened, if you need that. ..... $olderr = error_reporting(0); set_error_handler("ignoreerrhandler"); $fp = fsockopen(.....) restore_error_handler(); error_reporting($olderr); if ($fp) { [worked] } else { [failed] } ..... function ignoreerrhandler($errno, $errstr, $errfile, $errline) { return; } -- Tom -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php