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...