在 PHP 中存储和检索日期?
这就是我需要做的:我需要执行 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您只需要以秒为单位,请将两者都转换为秒(使用
strtotime()
PHP 函数),然后减去另一个。If you just need it in seconds, convert both to seconds (use the
strtotime()
PHP function), then subtract one from the other.如果您使用的是 PHP 5.3,请查看 DateTime::diff。
If you're using PHP 5.3, take a look at DateTime::diff.