我为我的php引擎设置max_execution_time
(下面你可以在我的主机上看到phpinfo()
输出),但它似乎不适用于我的以下代码:
Local value Master value
------------- ------------
max_execution_time 5 5
<?php
$start=time();
$x=0;
while($x<10) {
$x++;
echo time() - $start;
echo '<br/>';
0 0
0 0
0 0
0 0
0
.. ....
它应该在执行5秒后(由于max_execution_time
)结束,但即使在20秒后它也没有超时,然后我手动停止它。
我如何解决这个问题?(我的max_time_execution
设置无法正常工作