ID: 14542
Updated by: [EMAIL PROTECTED]
Reported By: [EMAIL PROTECTED]
Status: Verified
Bug Type: Scripting Engine problem
Operating System: Linux 2.4.5
-PHP Version: 4.1.1
+PHP Version: 4.3.0-dev
New Comment:
Verified with 4.3.0-dev at this date.
Previous Comments:
------------------------------------------------------------------------
[2002-06-16 00:11:57] [EMAIL PROTECTED]
reclassified.
------------------------------------------------------------------------
[2002-04-27 19:09:27] [EMAIL PROTECTED]
It's not fixed..
------------------------------------------------------------------------
[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