Term
|
Definition
|
|
Term
|
Definition
|
|
Term
|
Definition
|
|
Term
|
Definition
|
|
Term
|
Definition
set time; ($hr, $min, $sec, $mo, $day, $yr); Can add 1 for daylight savings |
|
|
Term
|
Definition
($any_string ) i.e.
$unix_timestamp = strtotime("last Monday");
echo $unix_timestamp . " "; |
|
|
Term
|
Definition
date($format, $timestamp) date('l jS \of F Y h:i:s A'); Monday 8th of August 2005 03:12:46 PM |
|
|
Term
|
Definition
Day of the month without leading zeros; A full textual representation of the day of the week (Monday). [date()] |
|
|
Term
|
Definition
A full textual representation of a month, such as January or March; Numeric representation of a month, without leading zeros [date()] |
|
|
Term
|
Definition
4 digit year; 2 digit year [date()] |
|
|
Term
|
Definition
Uppercase antemeridian; 12-hour format of an hour without leading zeros; 24-hour format of an hour with leading zeros; Minutes with leading zeros; Seconds, with leading zeros; [date()] |
|
|
Term
|
Definition
Timezone identifier; Whether or not the date is in daylight saving time; Timezone offset in seconds. The offset for timezones west of UTC is always negative, and for those east of UTC is always positive. [date()] |
|
|
Term
|
Definition
formatted date i.e. Thu, 21 Dec 2000 16:01:07 +0200 |
|
|
Term
|
Definition
strftime($format, $timestamp); 4 digit year |
|
|