ID: 14542
Updated by: [EMAIL PROTECTED]
Reported By: [EMAIL PROTECTED]
-Status: Closed
+Status: Open
Bug Type: Unknown/Other Function
Operating System: Linux 2.4.5
PHP Version: 4.1.1
New Comment:
It's not fixed..
Previous Comments:
------------------------------------------------------------------------
[2002-04-27 10:08:11] [EMAIL PROTECTED]
Fixed in CVS
------------------------------------------------------------------------
[2002-04-25 16:07:25] [EMAIL PROTECTED]
The cause of the bug is that the following code is commented out in the
timeout handler (zend_timeout() in zend_execute_API):
/* is there any point in this? we're terminating the request
anyway...
PG(connection_status) |= PHP_CONNECTION_TIMEOUT;
*/
In our case, we need this error status to be set correctly. We want to
be able to detect the error when a script is terminated due to timeout.
------------------------------------------------------------------------
[2001-12-16 02:22:59] [EMAIL PROTECTED]
It seems that when a script terminates due to a
timeout connection_status() returns 0 (and
connection_timeout() no longer exists).
When aborted by a user connection_status() does return 1.
Sample script:
<?PHP
set_time_limit(1);
register_shutdown_function("shutdown");
function shutdown(){
$status = connection_status();
$err = "Connection status ($status).\n";
error_log($err, 3, "/tmp/phpstatus.log");
}
while(true){
echo ".";
}
?>
------------------------------------------------------------------------
--
Edit this bug report at http://bugs.php.net/?id=14542&edit=1