PHP即将到来的本月第一个星期五

时间:2013-01-23 21:52:02

标签: php strtotime

(移至代码审查,这属于它)。

我在本月的第一个星期五(晚上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';
}

1 个答案:

答案 0 :(得分:1)

Confirmed working

$today  = new DateTime();
$this_months_friday = new DateTime('first friday of this month');
$next_months_friday = new DateTime('first friday of next month');
echo ($today < $this_months_friday) ? $this_months_friday->format('M j') : $next_months_friday->format('M j');