我需要在php中写这行,但没有想到如何写。
比赛将在每个星期日开始,并在一周后重置。
比赛将在每个星期日开始,并在<?php echo "next sunday time";?>
必需输出:
比赛将在每个星期日开始,并在下一个星期日结束:下周日开始时间
或
比赛结束于&#34;倒数计时器到下周的开始时间&#34;
答案 0 :(得分:1)
您可以尝试以下操作:
$upcomingSunday = date("Y-m-d", strtotime('next sunday'));
if you need the next sunday from a certain date
$date = strtotime('2010-07-01');
$upcoimngSunday = date("Y-m-d", strtotime('next sunday', $date));
当你说'#34;将在一周后重置时,你是什么意思。&#34; ?
答案 1 :(得分:1)
<?php
$nextWeek = time() + (7 * 24 * 60 * 60);
// 7 days; 24 hours; 60 mins; 60 secs
echo 'Now: '. date('Y-m-d') ."\n";
echo 'Next Week: '. date('Y-m-d', $nextWeek) ."\n";
// or using strtotime():
echo 'Next Week: '. date('Y-m-d', strtotime('+1 week')) ."\n";
?>