php-src/tests/basic/timeout_config.inc
2015-03-16 13:55:40 -07:00

11 lines
108 B
PHP

<?php
$t = 3;
function busy_wait($how_long)
{
$until = time() + $how_long;
while ($until > time());
}