gpt4 book ai didi

php - 在php中获取两个日期之间的周数

转载 作者:行者123 更新时间:2023-12-03 23:02:05 25 4
gpt4 key购买 nike

我想获得给定两个日期的周数,即从 2012-01-01 到 2012-12-31。周数应该正好在上面指定的范围内。你能给出这样做的建议吗?

最佳答案

像这样的东西应该可以正常工作:

<?php
$startDateUnix = strtotime('2012-01-01');
$endDateUnix = strtotime('2013-01-01');

$currentDateUnix = $startDateUnix;

$weekNumbers = array();
while ($currentDateUnix < $endDateUnix) {
$weekNumbers[] = date('W', $currentDateUnix);
$currentDateUnix = strtotime('+1 week', $currentDateUnix);
}

print_r($weekNumbers);
?>

DEMO .

输出:

Array
(
[0] => 52
[1] => 01
[2] => 02
.........
[51] => 51
[52] => 52
)

关于php - 在php中获取两个日期之间的周数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16037355/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com