在 PHP 中存储和检索日期?

发布于 2024-09-08 13:22:49 字数 139 浏览 5 评论 0原文

这就是我需要做的:我需要执行 PHP 操作,然后检索上次执行该操作的时间。我已经弄清楚了一切,除了一件事 - 如何找到两个日期/时间之间的差异?或者,有更简单的方法吗? (这是基于 WordPress 的,所以我使用 wp_options 来存储日期/时间数据。)

This is what I need to do: I need to perform a PHP operation, then retrieve how long ago the last time the operation was performed was. I have it all figured out, except one thing - how do I find the difference between two date/times? Or, is there an easier way to do this? (This is based in Wordpress, so I'm using wp_options to store the date/time data.)

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

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

发布评论

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

评论(2

梓梦 2024-09-15 13:22:49

如果您只需要以秒为单位,请将两者都转换为秒(使用 strtotime() PHP 函数),然后减去另一个。

If you just need it in seconds, convert both to seconds (use the strtotime() PHP function), then subtract one from the other.

记忆で 2024-09-15 13:22:49

如果您使用的是 PHP 5.3,请查看 DateTime::diff。

If you're using PHP 5.3, take a look at DateTime::diff.

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