


Introduction to the differences between time(), date(), and mktime() in PHP_PHP Tutorial
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:
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:
$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
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
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
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
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
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.

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

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

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 and Python each have their own advantages, and choose according to project requirements. 1.PHP is suitable for web development, especially for rapid development and maintenance of websites. 2. Python is suitable for data science, machine learning and artificial intelligence, with concise syntax and suitable for beginners.

The future of PHP will be achieved by adapting to new technology trends and introducing innovative features: 1) Adapting to cloud computing, containerization and microservice architectures, supporting Docker and Kubernetes; 2) introducing JIT compilers and enumeration types to improve performance and data processing efficiency; 3) Continuously optimize performance and promote best practices.

PHP and Python each have their own advantages, and the choice should be based on project requirements. 1.PHP is suitable for web development, with simple syntax and high execution efficiency. 2. Python is suitable for data science and machine learning, with concise syntax and rich libraries.

PHP is a scripting language widely used on the server side, especially suitable for web development. 1.PHP can embed HTML, process HTTP requests and responses, and supports a variety of databases. 2.PHP is used to generate dynamic web content, process form data, access databases, etc., with strong community support and open source resources. 3. PHP is an interpreted language, and the execution process includes lexical analysis, grammatical analysis, compilation and execution. 4.PHP can be combined with MySQL for advanced applications such as user registration systems. 5. When debugging PHP, you can use functions such as error_reporting() and var_dump(). 6. Optimize PHP code to use caching mechanisms, optimize database queries and use built-in functions. 7

PHP remains important in modern web development, especially in content management and e-commerce platforms. 1) PHP has a rich ecosystem and strong framework support, such as Laravel and Symfony. 2) Performance optimization can be achieved through OPcache and Nginx. 3) PHP8.0 introduces JIT compiler to improve performance. 4) Cloud-native applications are deployed through Docker and Kubernetes to improve flexibility and scalability.

PHP is still dynamic and still occupies an important position in the field of modern programming. 1) PHP's simplicity and powerful community support make it widely used in web development; 2) Its flexibility and stability make it outstanding in handling web forms, database operations and file processing; 3) PHP is constantly evolving and optimizing, suitable for beginners and experienced developers.

PHP is suitable for web development, especially in rapid development and processing dynamic content, but is not good at data science and enterprise-level applications. Compared with Python, PHP has more advantages in web development, but is not as good as Python in the field of data science; compared with Java, PHP performs worse in enterprise-level applications, but is more flexible in web development; compared with JavaScript, PHP is more concise in back-end development, but is not as good as JavaScript in front-end development.

PHP is used to build dynamic websites, and its core functions include: 1. Generate dynamic content and generate web pages in real time by connecting with the database; 2. Process user interaction and form submissions, verify inputs and respond to operations; 3. Manage sessions and user authentication to provide a personalized experience; 4. Optimize performance and follow best practices to improve website efficiency and security.
