PHP gets the start timestamp and end timestamp of today, yesterday, last week, this month, mainly using PHP's time function mktime. Let's start with a straight-through topic to illustrate how to use Mktime to get the start timestamp and end timestamp for today, yesterday, last week, this month, and then introduce mktime function and usage
The code is as follows:
PHP gets today's start timestamp and end timestamp $begintoday=mktime (0,0,0,date (' m '), date (' d '), date (' Y ')), $endToday =mktime (0,0,0,date (' m '), Date (' d ') +1,date (' y ')) -1;//php gets the start timestamp and end timestamp of yesterday $beginyesterday=mktime (0,0,0,date (' m '), date (' d ') -1,date (' Y ')); Endyesterday=mktime (0,0,0,date (' m '), date (' d '), date (' Y ')) -1;//php get last week's start timestamp and end timestamp $beginlastweek=mktime (0,0,0, Date (' m '), date (' d ')-date (' W ') +1-7,date (' Y ')), $endLastweek =mktime (23,59,59,date (' m '), date (' d ')-date (' W ') +7-7, Date (' Y '));//php gets the starting timestamp and end timestamp of the month $beginthismonth=mktime (0,0,0,date (' m '), 1,date (' y ')); $endThismonth =mktime ( 23,59,59,date (' m '), date (' t '), date (' Y '));
The PHP mktime () function is used to return a Unix timestamp for a date.
Grammar
Mktime (HOUR,MINUTE,SECOND,MONTH,DAY,YEAR,IS_DST)
Parameter description
Hour is optional. Specified hours.
Minute is optional. Specify minutes.
Second is optional. Specify seconds.
Month is optional. Specifies the number of months to be represented.
Day is optional. Prescribed days.
Year is optional. Prescribed year. On some systems, the legal value is between 1901-2038. However, there is no such limit in PHP 5.
Is_dst
Optional. If the time is in daylight saving time (DST), set to 1, otherwise set to 0 and if unknown, set to-1.
Since 5.1.0, the IS_DST parameter has been discarded. Therefore, you should use the new Time zone processing feature.
Usage
The parameter always represents the GMT date, so IS_DST has no effect on the result.
Parameters can be left-to-right and empty, and empty parameters will be set to the corresponding current GMT value.
Note that before PHP 5.1, if the argument for the function is illegal, it will return false.
It is also important to note that this function is useful for date arithmetic and validation. It can automatically correct out-of-bounds input, such as:
The code is as follows:
Echo (Date ("M-d-y", Mktime (0,0,0,12,36,2013)));
Output results such as: jan-05-2014