|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2017-04-01 21:27 UTC] tpunt@php.net
-Status: Open
+Status: Wont fix
[2017-04-01 21:27 UTC] tpunt@php.net
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Wed Oct 29 14:00:01 2025 UTC |
Description: ------------ after set ScriptControl Timeout, php script run a long time, and not stop/timeout. Reproduce code: --------------- ScriptControl1.Language = "PHPscript" ScriptControl1.AddObject "f", Form1 ScriptControl1.Timeout = 10 ScriptControl1.AddCode " set_time_limit(10); for($i=0; $i<30; $i++){sleep(2);}" the script not timeout. Expected result: ---------------- timeout Actual result: -------------- not timeout.