我需要在当前一周中找到星期一的日期。如何在 PHP 4 中执行此操作?
最简单的方法:
$time = strtotime('monday this week');
试试这个:
return strtotime('last monday', strtotime('next sunday'));