1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 08:12:21 +01:00
Files
archived-php-src/tests/basic/timeout_config.inc

12 lines
126 B
PHP

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