mirror of
https://github.com/php/php-src.git
synced 2026-03-25 08:42:29 +01:00
12 lines
108 B
PHP
12 lines
108 B
PHP
<?php
|
|
|
|
$t = 3;
|
|
|
|
function busy_wait($how_long)
|
|
{
|
|
$until = time() + $how_long;
|
|
|
|
while ($until > time());
|
|
}
|
|
|