zend_date 相对时间

发布于 2024-08-22 01:09:20 字数 228 浏览 8 评论 0原文

我想制作 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 技术交流群。

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

发布评论

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

评论(3

顾铮苏瑾 2024-08-29 01:09:20

Zend_Date::subDate() 怎么样?

$d1 = new Zend_Date();
$d2 = new Zend_Date($old_date);
$diff = $d1->subDate($d2);

获得差异后,您可以查看以下帮助程序之一:

How about Zend_Date::subDate()?

$d1 = new Zend_Date();
$d2 = new Zend_Date($old_date);
$diff = $d1->subDate($d2);

After you've got the difference, you can check out one of these helpers:

肩上的翅膀 2024-08-29 01:09:20

即使您不想要整个 Zym 框架,您仍然可以添加其 TimeSince 查看帮助程序到您自己的应用程序。

Even if you don't want the whole Zym framework, you could still add their TimeSince view helper to your own application.

弱骨蛰伏 2024-08-29 01:09:20

您可以减去两个日期的时间戳来找出它们之间的差异(以秒为单位),然后使用除法和取模将其表示为分钟、天等。

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.

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