Date and Time

Top  Previous  Next

Returns current time.

Syntax:

{#%TIME#}

Returns current time. The format should be specified by setting "time_format" in configuration file. You can use following common examples of the "time_format" setting and output time value.

Examples (Assuming now is: 5:16:18 pm):

date_format = g:i a

5:16 pm

 

date_format = G:i:s

17:16:08

 

date_format = G-i

17-16

 

You can also use characters from following table to customize the "time_format" setting.

The following characters are recognized in the time_format setting

format character

Description

Example returned values

Time

---

---

a

Lowercase Ante meridiem and Post meridiem

am or pm

A

Uppercase Ante meridiem and Post meridiem

AM or PM

B

Swatch Internet time

000 through 999

g

12-hour format of an hour without leading zeros

1 through 12

G

24-hour format of an hour without leading zeros

0 through 23

h

12-hour format of an hour with leading zeros

01 through 12

H

24-hour format of an hour with leading zeros

00 through 23

i

Minutes with leading zeros

00 to 59

s

Seconds, with leading zeros

00 through 59

u

Microseconds (allowed in PHP 5.2.2+)

Example: 54321

Timezone

---

---

e

Timezone identifier (allowed in PHP 5.1.0+)

Examples: UTC, GMT, Atlantic/Azores

I (capital i)

Whether or not the date is in daylight saving time

1 if Daylight Saving Time, 0 otherwise.

O

Difference to Greenwich time (GMT) in hours

Example: +0200

P

Difference to Greenwich time (GMT) with colon between hours and minutes (allowed in PHP 5.1.3+)

Example: +02:00

T

Timezone abbreviation

Examples: EST, MDT ...

Z

Timezone offset in seconds. The offset for timezones west of UTC is always negative, and for those east of UTC is always positive.

-43200 through 50400

 

 

Note:
Unrecognized characters in the format string will be printed as-is.