请问一下各位
我想取得上周一与上周日的时间 我上网查 最快的方法是
date('Y-m-d 00:00:00', strtotime('first day of last month'));
date('Y-m-d 23:59:59', strtotime('last day of last month'));
透过 strtotime 来取得,
但有没有可能发生当我执行完strtotime('first day of last month')后
要执行strtotime('last day of last month'))的时候 刚好隔天过12点了
例如8/20(日)的上周是 8/7 - 8/13
执行date('Y-m-d 00:00:00', strtotime('first day of last month')) 取到8/7,
但执行到strtotime('last day of last month'))的时候, 时间变成8/21(一)
取到的上周变成 8/20, 而不是预期的 8/13
可否避免这种情况发生?