php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #80641 Timeout Problem
Submitted: 2021-01-18 17:25 UTC Modified: 2021-01-18 17:52 UTC
Votes:4
Avg. Score:5.0 ± 0.0
Reproduced:3 of 4 (75.0%)
Same Version:3 (100.0%)
Same OS:3 (100.0%)
From: BaghalAghdam dot sajad at Gmail dot com Assigned:
Status: Open Package: PHP options/info functions
PHP Version: 7.4.14 OS: Linux/Cpanel
Private report: No CVE-ID: None
View Add Comment Developer Edit
Anyone can comment on a bug. Have a simpler test case? Does it work for you on a different platform? Let us know!
Just going to say 'Me too!'? Don't clutter the database with that please — but make sure to vote on the bug!
Your email address:
MUST BE VALID
Solve the problem:
6 + 4 = ?
Subscribe to this entry?

 
 [2021-01-18 17:25 UTC] BaghalAghdam dot sajad at Gmail dot com
Description:
------------
Hello.
I was test my code, while I'm using this code:
set_time_limit(5);
$e = 0;
while(true){
    $e++;
}
keeps alive and not getting timeout error. 
I changed version to php7.3, Fixed.

Test script:
---------------
set_time_limit(5);
$e = 0;
while(true){
    $e++;
}

Expected result:
----------------
Nothing


Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2021-01-18 17:39 UTC] cmb@php.net
-Status: Open +Status: Feedback -Assigned To: +Assigned To: cmb
 [2021-01-18 17:39 UTC] cmb@php.net
This works for me as expected (PHP-7.4 on Windows).  Note that
set_time_limit($x) increases the timeout set via
max_execution_time by $x seconds, so make sure that your
max_execution_time is not set to a large value or even 0.
 [2021-01-18 17:44 UTC] BaghalAghdam dot sajad at Gmail dot com
-Status: Feedback +Status: Assigned -Operating System: Linux/Windows +Operating System: Linux/Cpanel
 [2021-01-18 17:44 UTC] BaghalAghdam dot sajad at Gmail dot com
It's ok in cli,but cpanel have problem.
 [2021-01-18 17:52 UTC] cmb@php.net
-Status: Assigned +Status: Open -Assigned To: cmb +Assigned To:
 [2021-01-18 17:52 UTC] cmb@php.net
Well, I can't help with cpanel.
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Tue Apr 23 17:01:31 2024 UTC