我想计算Tuesday
的开始日期和Mondays
年2016
上的结束日期
我正在尝试输出
开始 date("j/n/Y");
结束 date("j/n/Y");
我已经查看了类似的SO问题,谷歌搜索,但它是特定的一周#,或者不是我想要完成的。
我想要得到的是以下内容。
Start: 12/14/2015
End 12/21/2015
Start: 12/22/2015
End 12/28/2015
....
Start: 01/05/2016
End 01/11/2016
Start: 01/12/2016
End 01/18/2016
...
等等和柔和。
任何帮助都会非常感激,并希望人们不要在这个问题上贬低废话。这是有效的,我看起来似乎无法找到我想要的东西。
答案 0 :(得分:1)
您可以尝试以下代码:
$start_date=date("m-d-Y", strtotime('tuesday this week'));
$end_date=date("m-d-Y", strtotime('monday next week'));
它会从week
开始,从Tuesday
开始为您Monday
。
答案 1 :(得分:1)
$oneWeek = 7*24*60*60; // 1 week in seconds
$curr_ts = time();
while ($curr_ts < strtotime('2017-01-01')) {
echo " Start: ",
date('m/d/Y', strtotime('tuesday this week', $curr_ts)),
"\nEnd ",
date('m/d/Y', strtotime('monday next week', $curr_ts)),
"\n";
$curr_ts = $curr_ts + $oneWeek;
}
答案 2 :(得分:1)
你可以使用strtotime
函数获得2016年1月的第一个星期二,然后使用 next monday 和明天循环52次。所以你不必做任何计算。
<?php
$ts=strtotime("tuesday january 2016");
echo "<table>";
for ($i=0;$i<52;$i++) {
echo "<tr><td>Start: ".date("Y/m/d", $ts);
$ts=strtotime("next monday", $ts);
echo "</td><td>End: ".date("Y/m/d", $ts)."</td>\n";
echo "</td><td>Payweek: ".date("W", $ts)."</td></tr>\n";
$ts=strtotime("tomorrow", $ts);
}
echo "</table>";
答案 3 :(得分:0)
虽然日期小于您定义的结束日期,但每周都会循环播放。
$date = Some start date ...;
$endDate = Some end date ...;
while (date_interval_format($date->diff($endDate),'%R') == '+') {
echo $date->format('j/n/Y') . " - " . $date->add(new DateInterval('P6D'))->format('j/n/Y') . "\n";
$date->add(new DateInterval('P1D'));
}