|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2007-09-30 12:35 UTC] nlopess@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2026 The PHP GroupAll rights reserved. |
Last updated: Sat Feb 07 07:00:01 2026 UTC |
Description: ------------ If i start the attached code via .so module in Apache or with "php -f" it will run forever. Reproduce code: --------------- <? ini_set('max_execution_time','10'); while (true){ sleep(1); } ?> Expected result: ---------------- max_execution_time exceeded Actual result: -------------- Script runs longer than max_excution_time and does not get killed.