|
|
|
@ -1,5 +1,9 @@ |
|
|
|
--TEST-- |
|
|
|
time_sleep_until — Make the script sleep until the specified time |
|
|
|
time_sleep_until() : Make the script sleep until the specified time |
|
|
|
--SKIPIF-- |
|
|
|
<?php |
|
|
|
function_exists('time_sleep_until') or die('skip time_sleep_until() is not supported in this build.'); |
|
|
|
?> |
|
|
|
--CREDITS-- |
|
|
|
Àlex Corretgé - alex@corretge.cat |
|
|
|
--FILE-- |
|
|
|
@ -8,9 +12,11 @@ time_sleep_until — Make the script sleep until the specified time |
|
|
|
$timeA = time(); |
|
|
|
time_sleep_until($timeA-3); |
|
|
|
$timeB = time(); |
|
|
|
echo ($timeB - $timeA) . " seconds."; |
|
|
|
echo ($timeB - $timeA) . " seconds.\n"; |
|
|
|
|
|
|
|
?> |
|
|
|
===DONE=== |
|
|
|
--EXPECTF-- |
|
|
|
Warning: time_sleep_until(): Sleep until to time is less than current time in %s.php on line %d |
|
|
|
0 seconds. |
|
|
|
0 seconds. |
|
|
|
===DONE=== |