PHP strtotime 中的多个值不能一起工作
我试图让多个值一起工作,但它们不会,所以我可能会遗漏一些东西或需要解决方法。
例如,
<?php echo date('Y-m-d', strtotime('+2 month first saturday'));?>
在此示例中,您将获得 2 个月内的日期,但星期几将与本周六的星期几一致,而不是 2 个月内的星期六。
编辑
来自 BUTTERBROT strtotime("first saturday", strtotime("+2 Month"));
的代码解决了迫在眉睫的问题,但是现在当它查找今年 4 月和 7 月的第一个星期六时,它显示第 9 个而不是第 2 个。有谁知道为什么以及如何阻止它。
I am trying to get multiple values is strtotime to work together but they will not so I may be missing something or in need of a work around.
For example
<?php echo date('Y-m-d', strtotime('+2 month first saturday'));?>
In this example you will get the date in 2 months but the day of week will be consistent with the day of week for this saturday not saturday in 2 months.
EDIT
This code from BUTTERBROT strtotime("first saturday", strtotime("+2 month"));
solves the immeidiate problem however now when it looks for the first saturday in APRIL and JULY of this year it displays the 9th instead of the 2nd. Does anyone know why and how to stop it.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
strtotime 采用第二个参数作为可选时间戳,也许您可以链接该函数,以便以正确的顺序调用它们:
strtotime takes a secound argument as optional timestamp, maybe you can chain the function so they get called in the correct order:
“第一个星期六+2个月”对我有用
编辑:
我认为你的问题是你使用“月”而不是“月”
"first saturday +2 months" works for me
edit:
I think your problem is you use "month" instead of "months"