set_time_limit를 사용하여 최대 실행 시간을 초 단위로 제어하세요
set_time_limit를 사용하여 최대 실행 시간을 초 단위로 제어하세요
<code><?php declare(ticks=1); $start = microtime(true); register_tick_function(function () use ($start) { (microtime(true) - $start < 0.5) or die("timeout\n"); }); function a() { echo "do some work\n"; usleep(600000); echo "do another work\n"; } a(); </code>
위 코드는 500밀리초의 시간 초과를 보여줍니다