PHP strtotime 中的多个值不能一起工作

发布于 2024-10-15 05:28:05 字数 387 浏览 7 评论 0原文

我试图让多个值一起工作,但它们不会,所以我可能会遗漏一些东西或需要解决方法。

例如,

<?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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

我为君王 2024-10-22 05:28:05

strtotime 采用第二个参数作为可选时间戳,也许您可​​以链接该函数,以便以正确的顺序调用它们:

strtotime("first saturday", strtotime("+2 month"));

strtotime takes a secound argument as optional timestamp, maybe you can chain the function so they get called in the correct order:

strtotime("first saturday", strtotime("+2 month"));
羁绊已千年 2024-10-22 05:28:05

“第一个星期六+2个月”对我有用

编辑:
我认为你的问题是你使用“月”而不是“月”

"first saturday +2 months" works for me

edit:
I think your problem is you use "month" instead of "months"

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文