For examples of PHP acquisition dates, the Fire Academy has given you a lot of information that can be retrieved using fire search. Read some technical blog today, found that the city of Tears of the blog updated a "Use PHP to get the beginning of a year, the start of the end of the day" log, especially reproduced to everyone study, the following is the original content:
In recent projects, you need to make a weekly submission feature that requires you to know the start and end dates for a specified number of weeks to handle other business. Here is a piece of code to get the start date and end date of the week in a year through PHP, and share it with you.
The following is a code for getting the start and end dates of a week in a year through PHP.
Copy to ClipboardWhat to refer to: [www.bkjia.com]function Get_week ($year) {
$year _start = $year. "-01-01";
$year _end = $year. "-12-31";
$startday = Strtotime ($year _start);
if (intval (' N ', $startday))! = ' 1 ') {
$startday =strtotime ("Nextmonday", Strtotime ($year _start)); Get the date of the first week of the year
}
$year _mondy = Date ("y-m-d", $startday); Get the date of the first week of the year
$endday = Strtotime ($year _end);
if (intval (' W ', $endday)) = = = ' 7 ') {
$endday =strtotime ("Lastsunday", Strtotime ($year _end));
}
$num = intval (Date (' W ', $endday));
for ($i = 1; $i <= $num; $i + +) {
$j = $i-1;
$start _date = Date ("y-m-d", Strtotime ("$year _mondy $j Week"));
$end _day = Date ("y-m-d", Strtotime ("$start _date +6 Day");
$week _array[$i] = Array (
Str_replace ("-", ".", $start _date), Str_replace ("-", ".", $end _day));
}
return $week _array;
}
The function Get_week () Gets the number of weeks of the first and last day of the year by passing in the parameter $year year, calculates the date of the first week, and gets the date of the first and last day of each week by looping. The last return is an array.
To get the start and end dates for a specified number of weeks, such as the start and end dates for the 18th Week of 2011, the code is as follows:
Copy to ClipboardWhat to refer to: [www.bkjia.com]$weeks = Get_week (2011);
Echo ' 18th week start date: '. $weeks [18][0].
Echo ' 18th week End Date: '. $weeks [18][1];
The result of the final output:
1.18th Week Start Date: 2011.05.02
2.18th Week End Date: 2011.05.08
http://www.bkjia.com/PHPjc/364750.html www.bkjia.com true http://www.bkjia.com/PHPjc/364750.html techarticle For examples of PHP acquisition dates, the Fire Academy has given you a lot of information that can be retrieved using fire search. Flipping through some technical blogs today, I found that the blog of the City of Tears is updated ...