Get week number (in the year) from a date PHP
我想date并计算出它的周数。
到目前为止,我有以下内容。它应该是 42 时返回 24。
1 2 3 4 5 6 7 |
数字颠倒是错误的巧合吗?还是我快到了?
今天,使用 PHP 的
1 2 3 4 5 | <?php $ddate ="2012-10-18"; $date = new DateTime($ddate); $week = $date->format("W"); echo"Weeknummer: $week"; |
这是因为在
1 |
因此,您的订单是错误的。
1 2 3 4 5 6 7 |
使用 PHP 的日期函数
http://php.net/manual/en/function.date.php
1 |
这得到今天的日期,然后告诉一周的周数
1 2 3 4 |
作为一个建议:
可能比所有这些都简单一点。
你可以做的其他事情:
1 2 |
我多年来一直试图解决这个问题,我以为我找到了一个更短的解决方案,但不得不再次回到长篇大论。此函数返回正确的 ISO 周符号:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 | /** * calcweek("2018-12-31") => 1901 * This function calculates the production weeknumber according to the start on * monday and with at least 4 days in the new year. Given that the $date has * the following format Y-m-d then the outcome is and integer. * * @author M.S.B. Bachus * * @param date-notation PHP"Y-m-d" showing the data as yyyy-mm-dd * @return integer **/ function calcweek($date) { // 1. Convert input to $year, $month, $day $dateset = strtotime($date); $year = date("Y", $dateset); $month = date("m", $dateset); $day = date("d", $dateset); $referenceday = getdate(mktime(0,0,0, $month, $day, $year)); $jan1day = getdate(mktime(0,0,0,1,1,$referenceday[year])); // 2. check if $year is a leapyear if ( ($year%4==0 && $year%100!=0) || $year%400==0) { $leapyear = true; } else { $leapyear = false; } // 3. check if $year-1 is a leapyear if ( (($year-1)%4==0 && ($year-1)%100!=0) || ($year-1)%400==0 ) { $leapyearprev = true; } else { $leapyearprev = false; } // 4. find the dayofyearnumber for y m d $mnth = array(0, 31, 59, 90, 120, 151, 181, 212, 243, 273, 304, 334); $dayofyearnumber = $day + $mnth[$month-1]; if ( $leapyear && $month > 2 ) { $dayofyearnumber++; } // 5. find the jan1weekday for y (monday=1, sunday=7) $yy = ($year-1)%100; $c = ($year-1) - $yy; $g = $yy + intval($yy/4); $jan1weekday = 1+((((intval($c/100)%4)*5)+$g)%7); // 6. find the weekday for y m d $h = $dayofyearnumber + ($jan1weekday-1); $weekday = 1+(($h-1)%7); // 7. find if y m d falls in yearnumber y-1, weeknumber 52 or 53 $foundweeknum = false; if ( $dayofyearnumber <= (8-$jan1weekday) && $jan1weekday > 4 ) { $yearnumber = $year - 1; if ( $jan1weekday = 5 || ( $jan1weekday = 6 && $leapyearprev )) { $weeknumber = 53; } else { $weeknumber = 52; } $foundweeknum = true; } else { $yearnumber = $year; } // 8. find if y m d falls in yearnumber y+1, weeknumber 1 if ( $yearnumber == $year && !$foundweeknum) { if ( $leapyear ) { $i = 366; } else { $i = 365; } if ( ($i - $dayofyearnumber) < (4 - $weekday) ) { $yearnumber = $year + 1; $weeknumber = 1; $foundweeknum = true; } } // 9. find if y m d falls in yearnumber y, weeknumber 1 through 53 if ( $yearnumber == $year && !$foundweeknum ) { $j = $dayofyearnumber + (7 - $weekday) + ($jan1weekday - 1); $weeknumber = intval( $j/7 ); if ( $jan1weekday > 4 ) { $weeknumber--; } } // 10. output iso week number (YYWW) return ($yearnumber-2000)*100+$weeknumber; } |
我发现我的简短解决方案错过了 2018-12-31,因为它返回的是 1801 而不是 1901。所以我不得不输入这个正确的长版本。
当您需要年和周时变得更加困难。
尝试找出哪一周是 01.01.2017。
(这是 2016 年的第 52 周,即从 Mon 26.12.2016 - Sun 01.01.2017)。
经过长时间的搜索,我找到了
结果:2016-52
https://www.php.net/manual/de/function.strftime.php
ISO-8601:1988 给定年份的周数,从一年的第一周开始,至少有 4 个工作日,星期一是一周的开始。 (01 到 53)
mysql中的等价物是DATE_FORMAT(date, '%x-%v')
https://www.w3schools.com/sql/func_mysql_date_format.asp
星期一是一周的第一天的星期(01 到 53)。
找不到使用 date() 或 DateTime 的相应解决方案。
至少不是没有像"1day, last monday"这样的解决方案。
使用
要求:在开始使用
所以在 CLI 上运行:
1 | php -m |
如果您在
DateTime 与 IntlGregorianCalendar:
示例:
1 2 3 4 5 | $dateTime = new DateTime('21-09-2020 09:00:00'); echo $dateTime->format("W"); // string '39' $intlCalendar = IntlCalendar::fromDateTime ('21-09-2020 09:00:00'); echo $intlCalendar->get(IntlCalendar::FIELD_WEEK_OF_YEAR); // integer 39 |
当一年有 53 周(如 2020 年)时,上面给出的大多数示例都会产生问题。所以每四年你会经历一周的差异。此代码没有:
1 2 3 4 5 6 7 8 9 10 11 12 | $thisYear ="2020"; $thisDate ="2020-04-24"; //or any other custom date $weeknr = date("W", strtotime($thisDate)); //when you want the weeknumber of a specific week, or just enter the weeknumber yourself $tempDatum = new DateTime(); $tempDatum->setISODate($thisYear, $weeknr); $tempDatum_start = $tempDatum->format('Y-m-d'); $tempDatum->setISODate($thisYear, $weeknr, 7); $tempDatum_end = $tempDatum->format('Y-m-d'); echo $tempDatum_start //will output the date of monday echo $tempDatum_end // will output the date of sunday |
1 2 3 4 5 6 7 |
您的 mktime 参数错误 - 需要是月/日/年,而不是日/月/年
要获取北美日期的星期数,我这样做:
1 2 3 4 5 6 7 8 9 |
并得到:
规则是一年的第一周是包含一年中第一个星期四的那一周。
我个人使用 Zend_Date 来进行这种计算,获取今天的星期就这么简单。如果您使用日期,它们还有许多其他有用的功能。
1 2 3 | $now = Zend_Date::now(); $week = $now->get(Zend_Date::WEEK); // 10 |
很简单
只有一行:
1 |
你也可以,例如我需要一个图表,减去前一周,如:
1 |
要获得日期 2018-12-31 的正确周数,请使用以下代码
1 2 3 4 5 6 7 8 9 |
要获取 jalai 日历中的周数,您可以使用:
1 2 3 4 5 6 7 8 9 10 |
结果:
1 | 15 |
周六周数变化
您的代码可以运行,但您需要翻转第 4 和第 5 个参数。
我会这样做
1 2 3 4 5 |
另外,一周不看代码后,你的变量名会让你感到困惑,你应该考虑阅读 http://net.tutsplus.com/tutorials/php/why-youre-a-bad-php -程序员/
试试这个解决方案
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | function last_monday($date) { if (!is_numeric($date)) $date = strtotime($date); if (date('w', $date) == 1) return $date; else return date('Y-m-d',strtotime('last monday',$date)); } $date = '2021-01-04'; //Enter custom date $year = date('Y',strtotime($date)); $date1 = new DateTime($date); $ldate = last_monday($year."-01-01"); $date2 = new DateTime($ldate); $diff = $date2->diff($date1)->format("%a"); $diff = $diff/7; $week = intval($diff) + 1; echo $week; //Returns 2. |