在 PHP 中计算日期间隔

发布于 2024-11-05 13:57:02 字数 199 浏览 2 评论 0原文

可能的重复:
在 PHP 中减去日期

我有两个 Unix 时间戳,如何计算之间的总天数他们?

Possible Duplicate:
Subtracting dates in PHP

I have two Unix timestamps, how can I calculate the total number of days between them?

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

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

发布评论

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

评论(4

回心转意 2024-11-12 13:57:02
$timestamp1 = x;
$timestamp2 = y;

$days_elapsed = floor(($timestamp2 - $timestamp1)/86400);

echo $days_elapsed;
$timestamp1 = x;
$timestamp2 = y;

$days_elapsed = floor(($timestamp2 - $timestamp1)/86400);

echo $days_elapsed;
潦草背影 2024-11-12 13:57:02

将它们转换为 UNIX 时间戳(如果还没有),然后就可以了

$diff = abs($timestamp1 - $timestamp2);
$days = (int) ($diff / 60 / 60 / 24); 

Convert them to UNIX-timestamp (if they arent already), then just

$diff = abs($timestamp1 - $timestamp2);
$days = (int) ($diff / 60 / 60 / 24); 
终止放荡 2024-11-12 13:57:02

像这样的事情应该可以解决问题:
$days = (strtotime($timestamp1)-strtotime($timestamp2))/(60*60*24);

something like this should do the trick:
$days = (strtotime($timestamp1)-strtotime($timestamp2))/(60*60*24);

oО清风挽发oО 2024-11-12 13:57:02

这段代码应该可以解决问题

$numDays = abs($timeOne - $timeTwo)/60/60/24;

This code should do the trick

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