zend_date 相对时间
我想制作 stackoverflow 时间戳(X 分钟前等)。我如何使用 zend_date 来实现它?我发现 如何计算使用 PHP 或 Zend_Date 过去的时间? 这个实现,但是它使用了其他库。有什么不同的方法吗?
i want to make stackoverflow timestamps(X minutes ago, etc). How i can make it using zend_date? I found How to calculate time passed with PHP or Zend_Date? this realisation, but it uses other library. Are there any different ways?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
Zend_Date::subDate()
怎么样?获得差异后,您可以查看以下帮助程序之一:
How about
Zend_Date::subDate()
?After you've got the difference, you can check out one of these helpers:
即使您不想要整个 Zym 框架,您仍然可以添加其
TimeSince
查看帮助程序到您自己的应用程序。Even if you don't want the whole Zym framework, you could still add their
TimeSince
view helper to your own application.您可以减去两个日期的时间戳来找出它们之间的差异(以秒为单位),然后使用除法和取模将其表示为分钟、天等。
You can subtract timestamps of two dates to find difference between them in seconds and then use division and modulo to represent it as minutes, days etc.