blob: 956985a62a3726e82ce6f8b6d7da7c15a1588984 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
--TEST--
time_sleep_until() function - basic test for time_sleep_until()
--SKIPIF--
<?php if (!function_exists("time_sleep_until")) die('skip time_sleep_until() not available');?>
--CREDITS--
Manuel Baldassarri mb@ideato.it
Michele Orselli mo@ideato.it
#PHPTestFest Cesena Italia on 2009-06-20
--FILE--
<?php
$time = time() + 2;
time_sleep_until( $time );
var_dump( time() >= $time );
?>
--EXPECT--
bool(true)
|