Unix and Linux Discussions Tagged with timestamp |
|
Thread / Thread Starter |
Last Post |
Replies |
Views |
Forum |
|
|
|
0 |
19,135 |
Programming |
|
|
|
6 |
6,864 |
UNIX for Beginners Questions & Answers |
|
|
|
5 |
3,232 |
UNIX for Beginners Questions & Answers |
|
|
|
1 |
3,155 |
UNIX for Beginners Questions & Answers |
|
|
|
5 |
4,336 |
UNIX for Advanced & Expert Users |
|
|
|
14 |
7,450 |
Shell Programming and Scripting |
|
|
|
1 |
2,147 |
UNIX for Beginners Questions & Answers |
|
|
|
1 |
6,225 |
Shell Programming and Scripting |
|
|
|
23 |
10,879 |
Shell Programming and Scripting |
|
|
|
12 |
8,615 |
Solaris |
|
|
|
3 |
2,899 |
Shell Programming and Scripting |
|
|
|
7 |
7,395 |
Shell Programming and Scripting |
|
|
|
7 |
8,867 |
UNIX for Dummies Questions & Answers |
|
|
|
0 |
1,886 |
Shell Programming and Scripting |
|
|
|
4 |
6,637 |
Shell Programming and Scripting |
|
|
|
2 |
4,848 |
UNIX for Advanced & Expert Users |
|
|
|
8 |
5,322 |
Shell Programming and Scripting |
|
|
|
2 |
18,098 |
UNIX for Dummies Questions & Answers |
|
|
|
1 |
3,781 |
Red Hat |
|
|
|
4 |
7,033 |
Solaris |
|
|
|
3 |
2,821 |
Shell Programming and Scripting |
|
|
|
1 |
2,400 |
Shell Programming and Scripting |
|
|
|
4 |
8,314 |
UNIX for Dummies Questions & Answers |
|
|
|
1 |
9,657 |
UNIX for Advanced & Expert Users |
|
|
|
1 |
3,139 |
UNIX for Dummies Questions & Answers |
|
|
|
3 |
13,615 |
Shell Programming and Scripting |
|
|
|
5 |
9,013 |
Shell Programming and Scripting |
|
|
|
8 |
14,115 |
UNIX for Dummies Questions & Answers |
|
|
|
3 |
3,937 |
Shell Programming and Scripting |
|
|
|
18 |
22,648 |
Solaris |
|
|
|
7 |
28,801 |
Shell Programming and Scripting |
|
|
|
1 |
2,571 |
Shell Programming and Scripting |
|
|
|
1 |
4,443 |
UNIX for Dummies Questions & Answers |
|
|
|
3 |
9,826 |
AIX |
|
|
|
5 |
7,568 |
Shell Programming and Scripting |
|
|
|
12 |
50,314 |
UNIX for Dummies Questions & Answers |
|
|
|
17 |
17,315 |
Shell Programming and Scripting |
|
|
|
1 |
21,659 |
Shell Programming and Scripting |
|
|
|
3 |
5,499 |
Shell Programming and Scripting |
|
|
|
2 |
89,889 |
Shell Programming and Scripting |
TIME_SLEEP_UNTIL(3) 1 TIME_SLEEP_UNTIL(3)
time_sleep_until - Make the script sleep until the specified time
SYNOPSIS
bool time_sleep_until (float $timestamp)
DESCRIPTION
Makes the script sleep until the specified $timestamp.
PARAMETERS
o $timestamp
- The timestamp when the script should wake.
RETURN VALUES
Returns TRUE on success or FALSE on failure.
CHANGELOG
+--------+---------------------------------------------------+
|Version | |
| | |
| | Description |
| | |
+--------+---------------------------------------------------+
| 5.3.0 | |
| | |
| | This function is now available on Windows plat- |
| | forms. |
| | |
+--------+---------------------------------------------------+
ERRORS
/EXCEPTIONS
If the specified $timestamp is in the past, this function will generate a E_WARNING.
EXAMPLES
Example #1
A time_sleep_until(3) example
<?php
//returns false and generates a warning
var_dump(time_sleep_until(time()-1));
// may only work on faster computers, will sleep up to 0.2 seconds
var_dump(time_sleep_until(microtime(true)+0.2));
?>
NOTES
Note
All signals will be delivered after the script wakes up.
SEE ALSO
sleep(3), usleep(3), time_nanosleep(3), set_time_limit(3).
PHP Documentation Group TIME_SLEEP_UNTIL(3)