|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2003-01-10 00:19 UTC] sniper@php.net
[2003-01-10 00:26 UTC] jc at mega-bucks dot co dot jp
[2003-01-10 10:49 UTC] sniper@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Mon Dec 01 06:00:01 2025 UTC |
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