How PHP Gets the start time stamp and end time stamp for today, yesterday, last week, month _php tips

Source: Internet
Author: User

Copy Code code as follows:

PHP gets today start timestamp and end time stamp
$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's start timestamp and end time stamp

$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's start time stamp 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's start timestamp and end time stamp

$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 optional. Set hours.
Minute optional. Specify minutes.
Second Optional. Specified seconds.
Month optional. A month that is specified in numbers.
Day is optional. Stipulated day.
Year is optional. Set year. On some systems, the legal value is between 1901-2038. However, there is no such limit in PHP 5.
Is_dst
Optional. If time is in daylight saving time (DST), set to 1, otherwise set to 0, if unknown, set to-1.

Since 5.1.0, IS_DST parameters have been discarded. Therefore, you should use the new time zone processing attributes.

Usage

The parameter always represents the GMT date, so IS_DST has no effect on the result.

The parameters can be left-to-right, and the empty arguments will be set to the appropriate current GMT value.

Note that before PHP 5.1, if the parameter of the function is illegal, it returns false.

It is also important to note that the function is useful for date operations and validation. It can automatically correct for cross-border input such as:

Copy Code code as follows:

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


Output results such as: jan-05-2014

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.