gpt4 book ai didi

php - 代码点火器 : Difference Between two time stamps

转载 作者:行者123 更新时间:2023-11-29 19:13:16 26 4
gpt4 key购买 nike

我在 codeigniter 工作。我需要获取两个时间戳之间的差异,并将其用于忘记密码服务中的链接到期。

到目前为止我已经尝试过。

$date= date('Y-m-d H:i'); 这将产生类似 2017-03-20 12:02 的内容。

然后在不久的将来我想再次使用相同的函数来获取当前时间。最终以分钟为单位测量这两个时间之间的差异。

最佳答案

    $past_time = strtotime('2017-03-20 12:02');
$current_time = time();
$difference = $current_time - $past_time;
$difference_minute = $difference/60;
echo 'Difference in minute between two different Time : '.intval($difference_minute);exit;

您可以尝试使用此代码。此代码给出两个不同时间之间的分钟差异。

关于php - 代码点火器 : Difference Between two time stamps,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42903131/

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