Detailed explanation of php date formatting method

王林
Release: 2023-04-07 11:14:02
Original
6770 people have browsed it

Detailed explanation of php date formatting method

php date formatting is generally done using date(). The declaration and definition of this function are as shown in the figure below. There are many parameters. Here, the commonly used year, month, day, A brief introduction to hours, minutes, seconds and days of the week.

Detailed explanation of php date formatting method

1. Year, month, day formatting

Year formatting method: y: lowercase y only Display 2 digits, Y: uppercase y displays 4 digits

Tips: y is the first letter of year, the larger one is more, which means that uppercase means more numbers (4), lowercase 2 places. Examples are as follows.

Detailed explanation of php date formatting method

2. Formatting method of month

m: The month is represented by two digits, add 0, from "01" to "12"

n: The month is represented by two digits, no 0 is added, from "1" to "12"

M: The month is represented by 3 English letters, It is the abbreviation of the English month. For example, January is expressed as Jan.

Tips: Generally, m is used to represent month in English, and it is convenient to use lowercase letters. Examples are as follows.

Detailed explanation of php date formatting method

3. Day formatting method

d: The day is represented by two digits, add 0

j: The day is represented by two digits, do not add 0

S: Capital s plus th suffix, such as 10th

Tips: d is the first letter of day, so it is generally Use d to represent the day, and j and capital S in special cases. Examples are as follows.

Detailed explanation of php date formatting method

The example displays today's year, month, and day in the format of year-month-day. You can also set the format according to your own needs, expressed in year, month, and day. The method is the same. Examples are as follows.

Detailed explanation of php date formatting method

4. Formatting of hours, minutes and seconds

Formatting of hours:

G: 24-hour format , do not add 0, for example, 1 o'clock is expressed as

g: 12-hour format, do not add 0, for example, 1 o'clock is expressed as

H: 24-hour format, add 0, such as 1 o'clock is 0

h: 12-hour clock, add 0, for example, 1 o'clock is represented as 0

Tips: uppercase represents 24-hour clock, lowercase represents 12-hour clock, the letter G does not matter the size Add 0 when writing, and do not add 0 to the letter H regardless of upper or lower case. The example is as follows.

Detailed explanation of php date formatting method

#Formatting of minutes and seconds uses i and s parameters respectively.

i: Indicates the number of minutes, add 0, from 00 to 59

s: Indicates the number of seconds, add 0, from 00 to 59

Examples are as follows.

Detailed explanation of php date formatting method

5. Week formatting

D: The letters represent the day of the week and are expressed as the abbreviation of the day of the week.

l: Letters represent the day of the week, expressed as the full name of the day of the week

w: Numbers represent the day of the week.

Examples are as follows.

Detailed explanation of php date formatting method

For more related tutorials, please visit the PHP Chinese website:PHP Video Tutorial

The above is the detailed content of Detailed explanation of php date formatting method. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!