如何在PHP上找到本周第一天的日期编号


How to find the date number for the first day of the current week on PHP

我需要找到本周第一天的日期号。例如,如果日期是2015年6月5日,我希望得到2015年5月29日的结果,其中周一是一周中的第一天。我不太熟悉PHP日期函数,因为我是新手。有人能告诉我如何找到它吗?谢谢

strtotime是一个功能强大的函数。
echo date("j/n/Y", strtotime('monday this week'));