php获取本周和上周的开始日期和结束日期

WBOY
Release: 2016-06-20 13:02:21
Original
1222 people have browsed it

最近由于工作的需要使用php获取当前周以及上周的开始日期和结束日期。

网上找了下,没有合适的,于是自己做了一下总结。

具体内容和代码如下:

<p><?php</p>header('Content-type: text/html; charset=utf-8');<br /><br />$date=date('Y-m-d');  //当前日期<br /><br />$first=1; //$first =1 表示每周星期一为开始日期 0表示每周日为开始日期<br /><br />$w=date('w',strtotime($date));  //获取当前周的第几天 周日是 0 周一到周六是 1 - 6 <br /><br />$now_start=date('Y-m-d',strtotime("$date -".($w ? $w - $first : 6).' days')); //获取本周开始日期,如果$w是0,则表示周日,减去 6 天<br /><br />$now_end=date('Y-m-d',strtotime("$now_start +6 days"));  //本周结束日期<br /><br />$last_start=date('Y-m-d',strtotime("$now_start - 7 days"));  //上周开始日期<br /><br />$last_end=date('Y-m-d',strtotime("$now_start - 1 days"));  //上周结束日期<br /><br />echo '本周开始日期:',$now_start,'<br />';<br />echo '本周结束日期:',$now_end,'<br />';<br />echo '上周开始日期:',$last_start,'<br />';<br /><p>echo '上周结束日期:',$last_end,'<br />';</p>
Copy after login

注意:由于国外的星期都是从周日开始,中国习惯从周一开始,所以直接使用strtotime("last monday") 就会出现错误的结果。


Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!