blob: 2a409a38b407f44f8057dfbde9e3312e212ee0ae (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
--TEST--
time_sleep_until() function - error test for time_sleep_until()
--SKIPIF--
<?php if (!function_exists("time_sleep_until")) die('skip time_sleep_until() not available');?>
--CREDITS--
Fabio Fabbrucci fabbrucci@grupporetina.com
Danilo Sanchi sanchi@grupporetina.com
#PHPTestFest Cesena Italia on 2009-06-20
--FILE--
<?php
var_dump(time_sleep_until(time()-1));
?>
--EXPECTF--
Warning: time_sleep_until(): Sleep until to time is less than current time in %s on line 2
bool(false)
|