PHP gets the start timestamp and end timestamp for today, yesterday, last week, this month

Source: Internet
Author: User

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 example to illustrate how to use Mktime to get the start timestamp and end timestamp for today, yesterday, last week, this month, and then introduce the Mktime function and usage.

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 yesterday start timestamp and end timestamp

$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 gets last week 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 this month start timestamp and end timestamp

$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:

Echo (Date ("M-d-y", Mktime (0,0,0,12,36,2001)));

Beijing.jinti.com/licai/21878599.htm

Beijing.jinti.com/licai/21878687.htm

Beijing.jinti.com/licai/21878737.htm

Beijing.jinti.com/licai/21878791.htm

Www.talkforex.com/thread-811022-1-1.html

Www.99inf.com/jinrong/pmdd/1098054.html

Www.99inf.com/jinrong/qhqq/1098018.html

Www.99inf.com/jinrong/qhqq/1098010.html

Www.99inf.com/jinrong/yhbx/1098044.html

Beijing.jinti.com/licai/21879338.htm

Beijing.jinti.com/licai/21879394.htm

PHP gets the start timestamp and end timestamp for today, yesterday, last week, this month

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.