$date = strtotime ("last Monday -1 week");
$date = strtotime ("last Sunday ");   //如果定义上星期日,就是离当前最近的一个周日
//$date = strtotime ("last Sunday -1 week"); ## 这个是以周日为一周开始的习惯
echo date('Y-m-d',$date);