gpt4 book ai didi

php - 使用php获取两个时间/日期之间的差异?

转载 作者:行者123 更新时间:2023-12-03 01:02:59 25 4
gpt4 key购买 nike

我想使用 php 找出两个日期之间的时差(以分钟为单位),格式为 d-m-Y H:i (14-04-2009 12:15)?

最佳答案

使用 strtotime() 将时间解析为时间戳,然后简单地从另一个中减去一个。

之后您可以使用数学函数获取分钟数、天数等​​。

例如:

// $date1 and $date2 are given
// the difference is in seconds
$difference = strtotime($date1) - strtotime($date2);

// getting the difference in minutes
$difference_in_minutes = $difference / 60;

引用: strtotime()

关于php - 使用php获取两个时间/日期之间的差异?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1770564/

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