如何使用 php 显示下周三的日期
如果今天是星期三,我需要显示下星期三的日期。如果今天是星期二,我需要显示明天的日期。
If today is Wednesday, I need to show next Wednesday's date. If today is Tuesday, I need to show tomorrows date.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
使用
strtotime
计算时间并date
对其进行格式化:Use
strtotime
to calculate the time anddate
to format it:一种选择是使用
strtotime()
获取日期的 Unix 时间戳,然后使用date()
以良好的格式输出。除了
strtotime()
之外,还有DateTime
类可用。如果您可能需要遥远的未来日期(不是下周三是遥远的未来!)或进一步修改日期,那么使用
DateTime
会更加灵活。An option is to use
strtotime()
to get the Unix timestamp for the date, then output it in a nice format withdate()
.Aside from
strtotime()
, there is also theDateTime
class available.Using
DateTime
is much more flexible, if you might be needing far future dates (not that next Wednesday is far future!) or further modification of the date.只是想添加其他有用的答案。如果您不想下周三而是下周三,您可以这样做:
Just wanted to add to the other helpful answers. If you wanted not next Wednesday but the Wednesday after, you'd do this:
非常简单,使用
strtotime
:Very easy, using
strtotime
: