gpt4 book ai didi

php strtotime 以秒和分钟为单位

转载 作者:行者123 更新时间:2023-12-04 14:32:57 27 4
gpt4 key购买 nike

我使用 ths 方法来查找两个时间戳之间的差异并获取这两个时间之间的秒数,然后像计数器一样用 jquery 刷新信息。

$diff = strtotime(date('Y-m-d H:i:s')) - strtotime('2014-06-25 14:50:03');
$time = intval(date('s', $diff));
echo $time;

当差值超过 60 秒时,$time 回到 0,就像重置一样。

例如,我想显示 1 min XX s

最佳答案

date()s 标志永远不会返回大于 59 的值,因为它只表示给定时间的当前秒数,永远不会超过在进入新的一分钟之前超过 59。

如果您想要总秒数,您实际上可以删除第二行代码,因为两个 Unix 时间戳之间的差异始终以秒为单位:

$time = strtotime(date('Y-m-d H:i:s')) - strtotime('2014-06-25 14:50:03');
echo $time;

如果您想将其显示为分钟和秒,您可以使用 DateTime(),它为此提供了更好的工具:

$now = new DateTime();
$then = new DateTime('2014-06-25 14:50:03');
$diff = $now->diff($then);
echo $diff->format('%i minutes %s seconds');

关于php strtotime 以秒和分钟为单位,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24409242/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com