php man page for time

Query: time

OS: php

Section: 3

Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar

TIME(3) 								 1								   TIME(3)

time - Return current Unix timestamp

SYNOPSIS
int time (void )
DESCRIPTION
Returns the current time measured in the number of seconds since the Unix Epoch (January 1 1970 00:00:00 GMT).
EXAMPLES
Example #1 time(3) example <?php $nextWeek = time() + (7 * 24 * 60 * 60); // 7 days; 24 hours; 60 mins; 60 secs echo 'Now: '. date('Y-m-d') ." "; echo 'Next Week: '. date('Y-m-d', $nextWeek) ." "; // or using strtotime(): echo 'Next Week: '. date('Y-m-d', strtotime('+1 week')) ." "; ?> The above example will output something similar to: Now: 2005-03-30 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.
SEE ALSO
date(3), microtime(3). PHP Documentation Group TIME(3)
Related Man Pages
datetime.settimestamp(3) - php
datetimeimmutable.gettimestamp(3) - php
datetime.gettimestamp(3) - php
datetime.modify(3) - php
easter_date(3) - php
Similar Topics in the Unix Linux Community
Automated FTP task
Gollum, You Need a Full Time Trainer!
How Much Vacation Do You Take Every Year?
Copy all the files with time stamp and remove header,trailer from file
Keep only the closet match of timestamped row (include headers) from file1 to precede file2 row/s