Home Backend Development PHP Tutorial Introduction to the differences between time(), date(), and mktime() in PHP_PHP Tutorial

Introduction to the differences between time(), date(), and mktime() in PHP_PHP Tutorial

Jul 21, 2016 pm 04:13 PM
date mktime php time introduce the difference Will date correctness of verify

checkdate: Verify the correctness of the date.
date: Format the server's time.
strftime: Format the server's time locally.
getdate: Get time and date information.
gettimeofday: Get the current time.
gmdate: Get the time difference between the current time and GMT.
easter_date: Calculate Easter date.
easter_days: Calculate the number of days between Easter and March 21st.
mktime: Get UNIX timestamp.
gmmktime: Get the Greenwich Mean Time of the UNIX timestamp.
time: Get the UNIX timestamp of the current time.
microtime: Get the UNIX timestamp value of the current time in millionths of a second.

 checkdate Verify the correctness of the date.

Syntax: int checkdate(int month, int day, int year);
Return value: Integer
Function type: Time and date
Content description If the date is valid, return true, if the date has problem, return false. This function can be used to check whether the date is valid. The valid range is as follows:
year is from 0 to 32767 years
month is from 1 to December
day, which changes with the month and leap year

date Format the server's time.

Syntax: string date(string format, int [timestamp]);
Return value: String
Function type: Time and date
Content description The string of the return value is determined by the configured format . If there is a timestamp value passed in, the timestamp will be formatted and returned; if there is no timestamp value passed in, the time of the current server will be formatted and returned. To convert dates to other language formats, the setlocale() and strftime() functions should be used. The options for string formatting are as follows:
a - "am" or "pm"
A - "AM" or "PM"
d - day, two digits, if less than two digits Then add zeros in front; 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 - hour in 12-hour format; such as: "01" to "12"
H - hour in 24-hour format; such as: "00" to "23"
g - hour in 12-hour format, less than Two digits are not padded with zeros; for example: "1" to 12"
G - hours in the 24-hour system, less than two digits are not padded with zeros; 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 zeros; 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; For example: "01" to "12"
n - month, two digits, if there are less than two digits, no Fill in zeros; such as: "1" to "12"
M - month, three English letters; such as: "Jan"
s - seconds; such as: "00" to "59"
S - Add an English ordinal number at the end of the word, 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

.

Usage examples,

Example 1:

Copy code The code is as follows:

print(date( "l dS of F Y h:i :s A" ));
print("July 1, 2000 is on a " . date("l", mktime(0,0,0,7,1,2000)));
?> ;

Example 2:

Copy code The code is as follows:

$tomorrow = mktime(0,0,0,date ("m") ,date("d")+1,date("Y"));
$lastmonth = mktime(0,0,0,date("m")-1,date("d "), date("Y"));
$nextyear = mktime(0,0,0,date("m"), date("d", date("Y")+1);
?>

Reference gmdate() mktime()
strftime Format the server's time locally.
Syntax: string strftime(string format, int [timestamp]);
Return value: String
Function type: Time and date
Content description The string of the return value is determined by the configured format. If there is a timestamp value passed in, the timestamp will be formatted and returned; if there is no timestamp value passed in, the time of the current server will be formatted locally and returned. The month or day of the week name changes depending on the locale configuration setlocale().
The returned string can be in the following format:
%a The abbreviation of the day of the week.
%A The full name of the day of the week.
%b The abbreviation of the month name.
%B The full name of the month.
%c is a string representing the local date and time better.
%d represents the day of the month as a number (range 00 to 31).
%H represents the hour as a 24-hour number (range 00 to 23).
%I represents the hour as a 12-hour number (range 01 to 12).
%j represents the day of the year as a number (range is 001 to 366).
%m Month number (ranging from 1 to 12).
%M minutes.
%p represents local time in 'AM' or 'PM'.
%S seconds.
%U The number represents the week number of the year, with the first week starting from the first Sunday.
%W The number represents the week number of the year, with the first week starting from the first Monday.
%w represents the day of the week as a number (0 is Sunday).
%x Date representation without time.
%X Time representation without date.
%y is a two-digit number representing the year (range from 00 to 99).
%Y is the complete numerical representation of the year, that is, four digits.
%Z time zone or name abbreviation.
%% % characters.

Usage Example

Copy code The code is as follows:

setlocale ("LC_TIME", "C");
print(strftime("%A in Finnish is "));
setlocale ("LC_TIME", "fi");
print(strftime("%A, in French "));
setlocale ("LC_TIME", "fr");
print(strftime("%A and in German "));
setlocale ("LC_TIME", "de");
print(strftime( "%A.n"));
?>

Refer to setlocale() mktime()
getdate to obtain time and date information.
Syntax: array getdate(int timestamp);
Return value: Array
Function type: Time and date
Content description The elements of the returned array include the following items:
"seconds" - seconds
"minutes" - minutes
"hours" - hours
"mday" - the day of the month
"wday" - the day of the week
"mon" - the month number
"year" - year, number
"yday" - the day of the year; such as: "299"
"weekday" - the full name of the day of the week; such as: "Friday"
" month" - the full name of the month; such as: "January"
gettimeofday Get the current time.
Syntax: array gettimeofday(void);
Return value: Array
Function type: Time and date
Content description The elements of the returned array include the following items:
"sec" - seconds
"usec" - one millionth of a second
"minuteswest" - minutes of Greenwich Mean Time
"dsttime" - the destination time zone
gmdate Get the current time difference from GMT.
Syntax: string gmdate(string format, int timestamp);
Return value: String
Function type: Time and date
Content description: This function is similar to the date() function, except that this function Returns the time difference from Greenwich Mean Time (GMT)

Usage Example

Copy code The code is as follows:

echo date( "M d Y H: i: s ",mktime(0,0,0,1,1,1998) );
echo gmdate( "M d Y H:i:s",mktime(0,0,0,1,1,1998) );
?>

If the machine executing this example is in Finland (Finland, GMT +0200), the returned result is:
Jan 01 1998 00:00:00
Dec 31 1997 22:00:00
Reference date() mktime() gmmktime()
easter_date Calculate Easter date.
Syntax: int easter_date(int [year]);
Return value: Integer
Function type: Time date
Content description: Enter a certain year, and the year will be returned in UNIX timestamp format. The Easter date of , if no year is entered, the date of the current year is calculated. Value? Note that the entered year must be between 1970 and 2037 AD, otherwise it cannot be calculated.
Usage Example

Copy code The code is as follows:

echo date("M-d-Y", easter_date(1999)) ;
echo date("M-d-Y", easter_date(2000));
echo date("M-d-Y", easter_date(2001));
?>

The returned result is

Apr-04-1999
Apr-23-2000
Apr-15-2001
easter_days Calculate the number of days between Easter and March 21st.

Syntax: int easter_days(int [year]);
Return value: Integer
Function type: Time and date
Content description Enter a certain year to calculate Easter and March 2nd of that year The number of dates between eleven days. If no year is entered, it will be calculated based on the current year. This function can be used to replace the problem that easter_date() cannot calculate outside the range of 1970-2037.
Usage Example

Copy code The code is as follows:

echo easter_days(1999);
echo easter_days( 1492);
echo easter_days(1913);
?>

The returned result is:
14 (4/4)
32 (4/22)
2 (3/23)
Refer to easter_date()
mktime to obtain the UNIX timestamp.
Syntax: int mktime(int hour, int minute, int second, int month, int day, int year);
Return value: Integer
Function type: Time date
Content description: Enter one time, returns a UNIX timestamp long integer.
Usage Example

Copy code The code is as follows:

echo date( "M-d-Y", mktime(0,0 ,0,12,32,1997) );
echo date( "M-d-Y", mktime(0,0,0,13,1,1997) );
echo date( "M-d-Y", mktime(0 ,0,0,1,1,1998) );
?>

Reference date() time()

gmmktime Gets the Greenwich Mean Time of the UNIX timestamp.

Syntax: int gmmktime(int hour, int minute, int second, int month, int day, int year);

Return value: Integer

Function type: Time and date
Content description: If you enter a time, a long integer of UNIX Greenwich time stamp will be returned.
time Get the UNIX timestamp of the current time.
Syntax: int time(void);
Return value: Integer
Function type: Time and date
Content description Return the stamp value of the current time.

Reference date()

microtime Gets the millionth of a second value of the UNIX timestamp of the current time.
Syntax: string microtime(void);
Return value: String
Function type: Time and date
Content description Returns the millionth of a second stamp value of the current time. If the operating system does not provide the system call function of gettimeofday(), this function will also be invalid.

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/313550.htmlTechArticlecheckdate: Verify the correctness of the date. date: Format the server's time. strftime: Format the server's time locally. getdate: Get time and date information. ...
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

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Repo: How To Revive Teammates
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

What is the difference between pre-market and after-market trading? Detailed explanation of the differences between pre-market and after-market trading What is the difference between pre-market and after-market trading? Detailed explanation of the differences between pre-market and after-market trading Mar 03, 2025 pm 11:54 PM

In traditional financial markets, pre-market and after-market trading refers to trading activities outside the regular trading period. Although the cryptocurrency market is trading around the clock, trading platforms like Bitget also offer similar features, especially some comprehensive platforms that trade stocks and cryptocurrencies at the same time. This article will clarify the differences in pre-market and after-market trading and explore its impact on currency price. Four major differences between pre-market and after-market trading: The main differences between pre-market and after-market trading and regular trading periods are in four aspects: trading time, liquidity, price fluctuations and trading volume: Trading time: Pre-market trading occurs before the official trading starts, and after-market trading is carried out after the regular trading ends. Liquidity: The liquidity of pre- and after-hours trading is low, there are few traders, and the bid and offer price difference is large; while the liquidity is high during the regular trading period, the price is

Why is Bittensor said to be the 'bitcoin' in the AI ​​track? Why is Bittensor said to be the 'bitcoin' in the AI ​​track? Mar 04, 2025 pm 04:06 PM

Original title: Bittensor=AIBitcoin? Original author: S4mmyEth, Decentralized AI Research Original translation: zhouzhou, BlockBeats Editor's note: This article discusses Bittensor, a decentralized AI platform, hoping to break the monopoly of centralized AI companies through blockchain technology and promote an open and collaborative AI ecosystem. Bittensor adopts a subnet model that allows the emergence of different AI solutions and inspires innovation through TAO tokens. Although the AI ​​market is mature, Bittensor faces competitive risks and may be subject to other open source

Is there any difference between South Korean Bitcoin and domestic Bitcoin? Is there any difference between South Korean Bitcoin and domestic Bitcoin? Mar 05, 2025 pm 06:51 PM

The Bitcoin investment boom continues to heat up. As the world's first decentralized digital asset, Bitcoin has attracted much attention on its decentralization and global liquidity. Although China was once the largest market for Bitcoin, policy impacts have led to transaction restrictions. Today, South Korea has become one of the major Bitcoin markets in the world, causing investors to question the differences between it and its domestic Bitcoin. This article will conduct in-depth analysis of the differences between the Bitcoin markets of the two countries. Analysis of the differences between South Korea and China Bitcoin markets. The main differences between South Korea and China’s Bitcoin markets are reflected in prices, market supply and demand, exchange rates, regulatory supervision, market liquidity and trading platforms. Price difference: South Korea’s Bitcoin price is usually higher than China, and this phenomenon is called “Kimchi Premium.” For example, in late October 2024, the price of Bitcoin in South Korea was once

Vertical proxy: Application scenarios and interpretation of disruptive potential of encryption native proxy Vertical proxy: Application scenarios and interpretation of disruptive potential of encryption native proxy Mar 04, 2025 am 10:21 AM

Artificial intelligence agents (AIAgents) are rapidly integrating into daily operations of enterprises, from large companies to small businesses, almost all areas have begun to be used, including sales, marketing, finance, law, IT, project management, logistics, customer service and workflow automation. We are moving from an era of manual processing of data, performing repetitive tasks, and using Excel tables to an era of autonomous operation by AI agents around the clock, which not only improves efficiency but also significantly reduces costs. Application case of AI agents in Web2: YCombinator's Perspective Apten: A sales and marketing optimization tool combining AI and SMS technology. BildAI: A model that can read architectural blueprints,

Pepe bought and sold out in a big way, is MUTM a smarter investment in 2025? Pepe bought and sold out in a big way, is MUTM a smarter investment in 2025? Mar 03, 2025 pm 07:09 PM

After the surge in PEPE, can MUTM become a more stable investment choice in 2025? PEPE (PEPE) has made early investors profitable, but its violent price fluctuations have also made many people question its long-term prospects. As the meme currency market continues to turbulently, traders are beginning to focus on projects with more fundamental advantages, and MutuumFinance (MUTM) is one of them. This is a decentralized lending platform focusing on practical financial applications. Unlike PEPE, which relies on speculative speculation, MUTM builds a structured DeFi ecosystem where users can borrow and earn passive income. Its pre-sale has exceeded one million US dollars, the first phase of token sales rate exceeds 97%, early investment

What exchange is Nexo? Is Nexo exchange safe? What exchange is Nexo? Is Nexo exchange safe? Mar 05, 2025 pm 07:39 PM

Nexo: Not only is it a cryptocurrency exchange, but also your digital financial manager. Nexo is not a traditional cryptocurrency exchange, but a financial platform that focuses more on cryptocurrency lending. It allows users to obtain loans in cryptocurrency as collateral and provides services to earn interest. While Nexo also offers cryptocurrency buying, selling and redemption capabilities, its core business is crypto lending. This article will explore the operating model and security of Nexo in depth to provide investors with a more comprehensive understanding. Nexo's operating model was founded in 2018 and is headquartered in Zug, Switzerland, and is a pioneer in the field of digital finance. It is different from other centralized exchanges and focuses more on providing comprehensive financial services. Users can buy, sell, trade cryptocurrencies without selling assets and

The difference between Ether and Bitcoin What is the difference between Ether and Bitcoin The difference between Ether and Bitcoin What is the difference between Ether and Bitcoin Mar 19, 2025 pm 04:54 PM

The difference between Ethereum and Bitcoin is significant. Technically, Bitcoin uses PoW, and Ether has shifted from PoW to PoS. Trading speed is slow for Bitcoin and Ethereum is fast. In application scenarios, Bitcoin focuses on payment storage, while Ether supports smart contracts and DApps. In terms of issuance, the total amount of Bitcoin is 21 million, and there is no fixed total amount of Ether coins. Each security challenge is available. In terms of market value, Bitcoin ranks first, and the price fluctuations of both are large, but due to different characteristics, the price trend of Ethereum is unique.

What does closing a virtual currency position mean? Same as selling? How to avoid forced closing of positions? What does closing a virtual currency position mean? Same as selling? How to avoid forced closing of positions? Mar 04, 2025 am 06:51 AM

Detailed explanation of closing positions in virtual currency trading: Strategies to avoid the risk of liquidation. This article will deeply explore the concept of "closing positions" in the virtual currency market, and clarify the difference between it and "sell", and how to effectively avoid the risk of forced liquidation (filtering positions). What is virtual currency closing? Close positions refers to investors ending existing positions through reverse trading, thereby locking in profits and losses. For example, investors holding long positions (buy) can close their positions by selling equal amounts of virtual currency; investors holding short positions (sell) need to buy equal amounts of virtual currency to close their positions. A closing operation is essentially closing or releasing an established investment position. Is closing a position equal to selling? Although long closing does involve selling operations, closing and selling are not exactly the same. Close position definition: End opened

See all articles