我正在使用云托管。php脚本运行时间因垂直比例设置而异:
- 10 秒:128MB - 200Mhz
- 1 秒:2Gb - 3 Ghz
但我觉得这两种情况下的执行时间都小于 1s,因为我 set_time_limit(1) 并且它没有显示超时错误。
可以肯定的是,我使用 getrusage() 来计算执行时间。在这两种情况下,它们都小于 1s。
这是什么行为?为什么第一个设置执行1s任务需要10s而不显示超时错误?
<?php
set_time_limit(1);
$rustart = getrusage();
echo date("m/d/Y h:i:s a", time()).'<br>';
//Begin of the task
$a = 0;
for ($i=0; $i<6000000; $i++) {
$a = $a + $i;
if ($i % 1000000 == 0){
echo "$i <br>";
}
}
//End of the task
echo date("m/d/Y H:i:s a", time());
echo '<br>';
function rutime($ru, $rus, $index) {
return ($ru["ru_$index.tv_sec"]*1000 + intval($ru["ru_$index.tv_usec"]/1000))
;
}
$ru = getrusage();
echo "This process used " . rutime($ru, $rustart, "utime") .
" ms for its computations<br>";
echo "It spent " . rutime($ru, $rustart, "stime") .
" ms in system calls<br>";
?>