mirror of
https://github.com/php/php-src.git
synced 2025-08-17 22:48:57 +02:00
11 lines
126 B
PHP
11 lines
126 B
PHP
<?php
|
|
|
|
$t = 3;
|
|
|
|
function busy_wait($how_long)
|
|
{
|
|
$until = microtime(TRUE) + $how_long;
|
|
|
|
while ($until > microtime(TRUE));
|
|
}
|
|
|