PHP time function
Like this blog? Consider exploring one of our sponsored banner ads...
time
(PHP 3, PHP 4, PHP 5)
time — Return current Unix timestampDescriptionint time ( void )
Returns the current time measured in the number of seconds since
the Unix Epoch (January 1 1970 00:00:00 GMT).
Example 1. time() example
$nextWeek = time() + (7 * 24 * 60 * 60); // 7 days; 24 hours; 60 mins; 60secs echo 'Now: '. date('Y-m-d') ."\n"; echo 'Next Week: '. date('Y-m-d', $nextWeek) ."\n"; // or using strtotime(): echo 'Next Week: '. date('Y-m-d', strtotime('+1 week')) ."\n";
The above example will output
something similar to:
Next Week: 2005-04-06
Next Week: 2005-04-06
Notes
Tip:
Timestamp of the start of the request is available in
$_SERVER['REQUEST_TIME'] since PHP 5.1.
date()microtime()
About this entry
You’re currently reading “PHP time function,” an entry on BRADINO
- Published:
- 2.26.07 / 12am
- Category:
- PHP Functions
- Tags:
No comments
Jump to comment form | comments rss [?] | trackback uri [?]