gpt4 book ai didi

php - 计算分秒不同的时间

转载 作者:行者123 更新时间:2023-12-02 22:03:53 24 4
gpt4 key购买 nike

我尝试比较 2 个日期时间并在分钟和秒中得到不同,然后我引用了这个主题 How to get time difference in minutes in PHP是的,代码可以显示不同但在一分钟内:

$to_time = strtotime("2008-12-13 18:42:00");
$from_time = strtotime("2008-12-13 18:41:58");

echo round(abs($to_time - $from_time) / 60,2). " minute";

那么上面的代码如何显示分秒呢?我的 php 版本是 5.2.17

最佳答案

$minutes = round(abs($to_time - $from_time) / 60,2);
$seconds = abs($to_time - $from_time) % 60;

echo "$minutes minute, $seconds seconds";

关于php - 计算分秒不同的时间,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16431624/

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