获取当前星期一和星期五的日期 (PHP)

2022-08-30 12:17:58

如何获取当前周的星期一和星期五的日期?

我有以下代码,但如果当前日期是星期日或星期六,它将失败。

$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"));

答案 1

最好的解决方案是:

$monday = date( 'Y-m-d', strtotime( 'monday this week' ) );
$friday = date( 'Y-m-d', strtotime( 'friday this week' ) );

答案 2

这些时间输入工作得很好:

strtotime( "next monday" );
strtotime( "previous monday" );
strtotime( "today" );
strtotime( "next friday" );
strtotime( "previous friday" );

您需要做的就是将逻辑包装在一些 if 语句中。


推荐