Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
假设我有一个可用的日期:2012-06-11
我想找到当前周的日期范围,
截至今天当周:2012-06-06 ~ 2012-06-12(周三至下周二)
例 1。06-17(太阳) 范围= 06-13(星期三) ~ 06-19(星期二) ex2: 06-21(星期四) 范围= 06-20(星期三) ~ 06-26(星期二)
我怎样才能找到它?
echo date('Y-m-d', strtotime('2012-06-21 last wednesday')), ' ~ ', date('Y-m-d', strtotime('2012-06-21 tuesday'));
可能有更好,更有效的方法来做到这一点,但这是快速简便的方法