Php to get the start date and end date of this week, php start date _ PHP Tutorial

Source: Internet
Author: User
Php obtains the start date and end date of the week. Php methods for obtaining the start and end dates of the week. The php start date example describes how php can obtain the start and end dates of the week. Share it with you for your reference. Php method for obtaining the start date and end date of the week. php start date

This example describes how php obtains the start and end dates of the week. Share it with you for your reference. The details are as follows:
The code is as follows: // The current date
$ SdefaultDate = date ("Y-m-d ");
// $ First = 1 indicates that Monday is the start date. 0 indicates that every Sunday is the start date.
$ First = 1;
// Obtain the day of the current week. Sunday is 0. Monday to Saturday is 1-6.
$ W = date ('W', strtotime ($ sdefaultDate ));
// Obtain the start date of the week. if $ w is 0, it indicates Sunday, minus 6 days.
$ Week_start = date ('Y-m-D', strtotime ("$ sdefaultDate-". ($ w? $ W-$ first: 6). 'Days '));
// End date of the week
$ Week_end = date ('Y-m-D', strtotime ("$ week_start + 6 days "));

I hope this article will help you with php programming.

The example in this article describes how php obtains the start date and end date of the week. Share it with you for your reference. Details...

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.