|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2013-08-21 09:34 UTC] ab@php.net
-Status: Open
+Status: Wont fix
[2013-08-21 09:34 UTC] ab@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Mon Nov 17 20:00:01 2025 UTC |
Description: ------------ set_time_limit can't kill a process launched with shell_exec function. Test script: --------------- <? set_time_limit(10); shell_exec("/bin/sleep 30"); Expected result: ---------------- time php test.php real 0m10.032s user 0m0.012s sys 0m0.016s Actual result: -------------- time php test.php real 0m30.032s user 0m0.012s sys 0m0.016s