获取当前星期一的日期,以 PHP 4 表示

2022-08-30 23:49:16

我需要在当前一周中找到星期一的日期。如何在 PHP 4 中执行此操作?


答案 1

最简单的方法:

$time = strtotime('monday this week');

答案 2

试试这个:

return strtotime('last monday', strtotime('next sunday'));

推荐