如何在 PHP 中找到该月的 [x] [天]?

发布于 2024-10-08 22:29:39 字数 110 浏览 0 评论 0原文

我希望我没有重复帖子;但我不太知道要搜索什么。我正在开发 PHP 日历,我希望能够找到当月的 [x] [day] 的日期。 (例如第二个星期四、第三个星期五、第一个星期一等)

我应该怎么做?

I hope I'm not duplicating a post; but I didn't quite know what to search for this. I'm working on a PHP calendar, and I want to be able to find the date of the [x] [day] of the current month. (e.g. second thursday, third friday, first monday, etc.)

How should I do this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

生活了然无味 2024-10-15 22:29:39

取决于您想要从中生成的输入,但最简单的答案是:

echo date('Y-m-d', strtotime('third friday of february'));
// 2010-02-19

Depends on what input you want to generate this from, but the easiest answer is:

echo date('Y-m-d', strtotime('third friday of february'));
// 2010-02-19
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文