search
Homephp教程php手册Introduction to the differences between time(), date(), and mktime() in PHP_php basics

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 a UNIX timestamp.
time: Get the UNIX timestamp of the current time.
microtime: Gets the UNIX timestamp of the current time in millionths of a second.

Checkdate Verifies 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
Month is from 1 to December
The day will change 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 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; e.g.: "01" to "12"
H - hour in 24-hour format; e.g.: "00" to "23"
g - hour in 12-hour format, less than Two digits are not padded with zeros; for example: "1" to 12"
G - hour in 24-hour system, less than two digits are not padded with zeros; for example: "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; For example: "01" to "12"
n - month, two digits, if there are less than two digits, no Fill with 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; For example: "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 Abbreviation of 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 001 to 366).
%m Month number (range 1 to 12).
%M minutes.
%p represents local time in 'AM' or 'PM'.
%S seconds.
The %U number represents the week number of the year, with the first week starting on the first Sunday.
%W The number represents the week number of the year, with the first week starting on 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 (ranging from 00 to 99).
%Y The complete year numeric representation, that is, four digits.
%Z time zone or name abbreviation.
%% % characters.

Usage examples

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"));
?>
div>

Refer to setlocale() mktime()
getdate to obtain time and date information.
Syntax: array getdate(int timestamp);
Return value: Array
Function type: Time 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 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 Gets the time difference between the current time and GMT.
Syntax: string gmdate(string format, int timestamp);
Return value: String
Function type: Time 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 examples

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 the Easter date.
Syntax: int easter_date(int [year]);
Return value: Integer
Function type: Time date
Content description: If you enter a certain year, 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 examples

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 return result is

Apr-04-1999
Apr-23-2000
Apr-15-2001
easter_days Counts 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 2 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 examples

Copy code The code is as follows:


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

The return 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 and date
Content description: Enter one time, returns a UNIX timestamp long integer.
Usage examples

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 a 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 the UNIX Greenwich time stamp will be returned.
time Gets 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.

Statement
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
如何根据当前时间戳创建文件/文件夹并为其命名如何根据当前时间戳创建文件/文件夹并为其命名Apr 27, 2023 pm 11:07 PM

如果您正在寻找根据系统时间戳自动创建文件和文件夹并为其命名的方法,那么您来对地方了。有一种超级简单的方法可以用来完成这项任务。然后,创建的文件夹或文件可用于各种目的,例如存储文件备份、根据日期对文件进行排序等。在本文中,我们将通过一些非常简单的步骤解释如何在Windows11/10中自动创建文件和文件夹,并根据系统的时间戳对其进行命名。使用的方法是批处理脚本,非常简单。希望你喜欢阅读这篇文章。第1节:如何根据系统当前时间戳自动创建文件夹并命名第1步:首先,导航到要在其中创建文件夹的父文件夹,

PHP Warning: date() expects parameter 2 to be long, string given的解决方法PHP Warning: date() expects parameter 2 to be long, string given的解决方法Jun 22, 2023 pm 08:03 PM

在使用PHP程序开发时,经常会碰到一些警告或者错误的提示信息。其中,可能出现的一个错误提示就是:PHPWarning:date()expectsparameter2tobelong,stringgiven。这个错误的提示信息意思是:函数date()的第二个参数期望是长整型(long),但是实际传递给它的是字符串(string)。那么,我们

time包的单调时钟处理time包的单调时钟处理Aug 04, 2023 pm 05:45 PM

我们今天主要是来看一看golang time 包的时间应用方式。两者的一般规则是「wall time」用于告知时间,而「monotonic clock」用于测量时间;除外还有其他的时钟处理方式。

Java中使用Date和SimpleDateFormat类来处理时间的方法及用法介绍Java中使用Date和SimpleDateFormat类来处理时间的方法及用法介绍Apr 21, 2023 pm 03:01 PM

一.介绍java.util包中的Date类表示特定的时间,精确到毫秒。如果要想使用我们的Date类,那么我们必须得引入我们的Date类。Date类直接写入年份是得不到正确的结果的。因为java中Date是从1900年开始算的,所以前面的第一个参数只要填入从1900年后过了多少年就是你想要得到的年份。月需要减1,日可以直接插入。这种方法用的比较少,常用的是第二种方法。这种方法是将一个符合特定格式,比如yyyy-MM-dd,的字符串转化成为Date类型的数据。首先,定义一个Date类型的对象Date

如何使用Date类的getTime()方法获取日期的毫秒表示形式如何使用Date类的getTime()方法获取日期的毫秒表示形式Jul 24, 2023 am 11:42 AM

如何使用Date类的getTime()方法获取日期的毫秒表示形式在Java中,Date类是用于表示日期和时间的类。它提供了许多有用的方法来操作和获取日期对象的信息。其中,getTime()方法是Date类中的一个重要方法,它可以返回日期对象的毫秒表示形式。接下来,我们将详细介绍如何使用这个方法来获取日期的毫秒表示形式,并提供相应的代码示例。使用Date类的g

Python中的日历库和日期库有哪些选择?Python中的日历库和日期库有哪些选择?Oct 21, 2023 am 09:22 AM

Python中有许多优秀的日历库和日期库供我们使用,这些库可以帮助我们处理日期和日历相关的操作。接下来,我将为大家介绍几个常用的选择,并提供相应的代码示例。datetime库:datetime是Python内置的日期和时间处理模块,提供了许多日期和时间相关的类和方法,可以用于处理日期、时间、时间差等操作。示例代码:importdatetime#获取当

Java8 Time Api如何使用Java8 Time Api如何使用Apr 28, 2023 pm 12:25 PM

1.概述作为本文的一部分,让我们从现有Date和CalendarAPI存在的一些问题入手,来探讨新的Java8Date和TimeAPI如何解决这些问题。我们还将搞一搞Java8时间类库中的核心类,比如LocalDate,LocalTime,LocalDateTime,ZonedDateTime,Period,Duration以及它们的api。2.旧的时间API(java8之前)的问题线程安全-Date和Calendar类不是线程安全的,使开发者难以调试这些api的并发问题,需要编写额外的代码来处

Java中的Stringbuild,Date和Calendar类怎么使用Java中的Stringbuild,Date和Calendar类怎么使用May 22, 2023 pm 04:52 PM

Stringbuild类由于String类的对象内容不可改变,每次拼接都会构建一个新的String对象,既耗时,又浪费内存空间这时需要通过java提供的StringBuild类解决这个问题StringBuilder又称为可变字符序列,它是一个类似于String的字符串缓冲区,可以看作是一个容器,容器中可以装很多字符串可变指的是StringBuilder对象中的内容是可变的构造方法publicStringBuilder():创建一个空的缓冲区publicStringBuilder(Stringsr

See all articles

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

Hot Tools

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),