Detailed explanation of parameters of date function in php
time() gets a number in PHP. This number indicates how many seconds have passed since 1970-01-01. It’s very strange.
But This is convenient for calculation.
To find the time of the previous day is time()-60*60*24;
To find the time of the previous year is time()*60*60*24* 365
So how to change this number into date format, you have to use the datefunction
$t=time(); echo date("Y-m-d H:i:s",$t);
The first one The format of the parameters respectively indicates:
a - "am" or "pm"
A - "AM" or "PM"
d - Day, two digits, if there are less than two digits, the first Fill in zeros; such as: "01" to "31"
D - day of the week, three English letters; such as: "Fri"
F - month, full English name; such as: "January"
h - Hours in 12-hour format; such as: "01" to "12"
H - Hours in 24-hour format; such as: "00" to "23"
g - Hours in 12-hour format, less than two digits Do not add zeros; such as: "1" to 12"
G - Hours in the 24-hour system, do not add zeros if there are less than two digits; such as: "0" to "23"
i - Minutes; such as: "00 " to "59"
j - Day, two digits, if there are less than two digits, do not add zero; such as: "1" to "31"
l - Day of the week, full English name; such as: "Friday "
m - month, two digits, if there are less than two digits, add zeros in front; such as: "01" to "12"
n - month, two digits, if there are less than two digits, no zeros will be added ; Such as: "1" to "12"
M - month, three English letters; such as: "Jan"
s - seconds; such as: "00" to "59"
S - suffix Add an English ordinal number, two English letters; such as: "th", "nd"
t - the number of days in the specified month; such as: "28" to "31"
U - the total number of seconds
w - Numeric day of the week, such as: "0" (Sunday) to "6" (Saturday)
Y - year, four digits; such as: "1999"
y - year, two digits; such as: "99"
z - The day of the year; such as: "0" to "365"
Other characters not listed above will be listed directly
The above is the detailed content of Detailed explanation of parameters of date function in php. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics



PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

To work with date and time in cakephp4, we are going to make use of the available FrozenTime class.

Working with database in CakePHP is very easy. We will understand the CRUD (Create, Read, Update, Delete) operations in this chapter.

To work on file upload we are going to use the form helper. Here, is an example for file upload.

CakePHP is an open-source framework for PHP. It is intended to make developing, deploying and maintaining applications much easier. CakePHP is based on a MVC-like architecture that is both powerful and easy to grasp. Models, Views, and Controllers gu

Validator can be created by adding the following two lines in the controller.

Logging in CakePHP is a very easy task. You just have to use one function. You can log errors, exceptions, user activities, action taken by users, for any background process like cronjob. Logging data in CakePHP is easy. The log() function is provide

Visual Studio Code, also known as VS Code, is a free source code editor — or integrated development environment (IDE) — available for all major operating systems. With a large collection of extensions for many programming languages, VS Code can be c
