(PHP 4, PHP 5, PHP 7)
Return current Unix timestamp
int time ( void )
Returns the current time measured in the number of seconds since the Unix Epoch (January 1 1970 00:00:00 GMT).
Examples:
time() example
1 2 3 4 5 6 7 8 | <?php $nextWeek = time() + (7 * 24 * 60 * 60); // 7 days; 24 hours; 60 mins; 60 secs 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:
Now: 2005-03-30 Next Week: 2005-04-06 Next Week: 2005-04-06
See also:
date() -
Please login to continue.