(移至代码审查,这属于)。
我有一个事件在每月的第一个星期五(晚上 7 点)重复发生,我需要输出下一个第一个星期五的日期。
这是我写的第一个 PHP,我想知道是否有更好的方法来实现它?服务器正在运行 PHP 5.3
这是我写的:
$d = strtotime('today');
$t = strtotime('first friday of this month');
if ($d > $t) {
$ff = strtotime('first friday of next month');
$ffn = date('M j', $ff);
echo 'Friday, '.$ffn.' at 7pm';
} elseif ($d == $t) {
echo 'Tonight at 7pm';
} else {
$ff = strtotime('first friday of this month');
$fft = date('M j', $ff);
echo 'Friday, '.$fft.' at 7pm';
}