PHP获取本周首先天和最后一天

WBOY
Release: 2016-06-13 11:47:13
Original
954 people have browsed it

PHP获取本周第一天和最后一天

<br />//本周的第一天和最后一天<br />$date=new DateTime();<br />$date->modify('this week');<br />$first_day_of_week=$date->format('Y-m-d');<br />$date->modify('this week +6 days');<br />$end_day_of_week=$date->format('Y-m-d');<br />
Copy after login

用PHP获取本周第一天和最后一天,网上有很多方法,用的函数,感觉太麻烦,而且有的有bug,官方既然自带了一个DateTime类,为何很少看见有人使用?这是在一个外国网站看到的回答,这个方法可靠吗?
------解决方案--------------------
可靠,没什么问题
------解决方案--------------------
this week 这个星期
echo date('Y-m-d w', strtotime('this week'));<br />
Copy after login
Copy after login
2014-02-17 1

我们是中国人,并不十分了解西方人对日期的表述方式(尤其是程序员们)
况且这个表述也不符合欧美人的一周从周日开始的事实

按照 php 默认的日期计算,似应写作
echo date('Y-m-d w', strtotime('last day this week'));<br />
Copy after login
Copy after login
2014-02-16 0

------解决方案--------------------
引用:
this week 这个星期
echo date('Y-m-d w', strtotime('this week'));<br />
Copy after login
Copy after login
2014-02-17 1

我们是中国人,并不十分了解西方人对日期的表述方式(尤其是程序员们)
况且这个表述也不符合欧美人的一周从周日开始的事实

按照 php 默认的日期计算,似应写作
echo date('Y-m-d w', strtotime('last day this week'));<br />
Copy after login
Copy after login
2014-02-16 0


版主强大
------解决方案--------------------
有了起点就不怕没有终点
echo date('Y-m-d w', strtotime('last day this week +6 day'));
Copy after login
2014-02-22 6

------解决方案--------------------
<br />echo date('Y-m-d',mktime(0,0,0,date('m'),date('d')-date('w'),date('Y'))); // 第一天<br />echo date('Y-m-d',mktime(0,0,0,date('m'),date('d')+(6-date('w')),date('Y'))); // 最后一天<br />
Copy after login

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