1<?php 2 3$t = 3; 4 5function busy_wait($how_long) 6{ 7 $until = microtime(TRUE) + $how_long; 8 9 while ($until > microtime(TRUE)); 10} 11 12