$day = date('l', strtotime('07/25/2010'));
echo "$day ";
echo date("m/d/Y", strtotime("first $day"));
这打印出来Sunday 07/11/2010
$day = date('l', strtotime('07/25/2010'));
echo "$day ";
echo date("m/d/Y", strtotime("last $day"));
这打印出来Sunday 07/04/2010
这里发生了什么?不应该分别是 07/04/2010 和 07/25/2010 吗?