获取当前星期几和星期五的日期(PHP)
如何获得当前一周的星期一和星期五的日期?
我有以下代码,但是如果当前日期是星期日或星期六,则它将失败。
$current_day = date("N");$days_to_friday = 5 - $current_day;
$days_from_monday = $current_day - 1;
$monday = date("Y-m-d", strtotime("- {$days_from_monday} Days"));
$friday = date("Y-m-d", strtotime("+ {$days_to_friday} Days"));
回答:
这些strtotime输入效果很好:
strtotime( "next monday" );strtotime( "previous monday" );
strtotime( "today" );
strtotime( "next friday" );
strtotime( "previous friday" );
您需要做的就是将逻辑包装在一些if语句中。
以上是 获取当前星期几和星期五的日期(PHP) 的全部内容, 来源链接: utcz.com/qa/429054.html