php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #21561 connection_status() returns 0 even after script times out
Submitted: 2003-01-09 23:33 UTC Modified: 2003-01-10 10:49 UTC
From: jc at mega-bucks dot co dot jp Assigned:
Status: Not a bug Package: Unknown/Other Function
PHP Version: 4.3.0 OS: Red Hat Linux 7.2
Private report: No CVE-ID: None
 [2003-01-09 23:33 UTC] jc at mega-bucks dot co dot jp
The following code times out, PHP throws an error saying the code has timed out, *but* calling connection_status() says the code did *not* time out!

connection_status() returns 0 when it should return 2 ...

My code:

set_time_limit(2);
echo "set execution limit to 2 seconds <BR>";
register_shutdown_function("timed_out");
require_once("db_functions/sql_query.inc");

$sql = "BEGIN;";
$res = sql_query($sql);
$sql = "insert into test(test) values('testing 4');";
$res = sql_query($sql);

//This will cause the script to time out
$i = 0;
while(true) {$i++;}

$sql = "COMMIT;";
$res = sql_query($sql);

function timed_out() {
  $status = connection_status();
  if ($status == 2) {
    echo "the script timed out <BR>";
  }
  else echo "no time out. Connection status is $status <BR>";
}

The OUPUT:

set execution limit to 2 seconds

Fatal error: Maximum execution time of 2 seconds exceeded in /www/htdocs/jc/shut.php on line 16
no time out. Connection status is 0

Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2003-01-10 00:19 UTC] sniper@php.net
Please do not submit the same bug more than once. An existing
bug report already describes this very problem. Even if you feel
that your issue is somewhat different, the resolution is likely
to be the same. Because of this, we hope you add your comments
to the existing bug instead.

Thank you for your interest in PHP.
 [2003-01-10 00:26 UTC] jc at mega-bucks dot co dot jp
Ok. Can you tell me bug # what this is a duplicate of so I can track it? I searched but could find a similar bug.

Thanks!
 [2003-01-10 10:49 UTC] sniper@php.net
#14542
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Wed Jul 03 21:01:31 2024 UTC