You can try that code. It looks like connection_timeout() is deprecated, however. You should probably use connection_aborted() and connection_status()
http://www.php.net/manual/en/function.connection-status.php http://www.php.net/manual/en/function.connection-aborted.php Read the user notes in connection_aborted, there appear to be issues to take into account. Take care, Greg -- phpDocumentor http://www.phpdoc.org "Jean-Christian Imbeault" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > Greg Beaver wrote: > > > > http://www.php.net/manual/en/features.connection-handling.php > > Nice! > > So if I understand correctly I need to: > > 1- register a shutdown function > 2- have this function check if it was called b/c of a conection_timeout() > 3- And if so have the function print out my timeout error message > > So in my script I could put something like this: > > <?php > function timeout_message() { > if ( connection_timeout() ) { > echo "server busy, try again later"; > } > } > > register_shutdown_function('timeout_message'); > > [rest of my script goes here ...] > > ?> > > If the script timesout then my error function is called. Is that about > right? > > Jc > -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php