我正在寻找类似date_diff的功能,我可以用于5.2.12吗?我找不到一个。有没有我没看到它会起作用。这一点是因为我试图查看两个日期时间变量之间是否有10分钟到期。
答案 0 :(得分:0)
如果date_diff本身不起作用,很可能是由于日期对象未正确设置。但是,如果你想要一个同样的自定义函数,你可以看一下......
How to calculate the difference between two dates using PHP?
答案 1 :(得分:0)
这个怎么样:
if ( strtotime($newest_date) - strtotime($oldest_date) > 600 )
{
echo '10 minutes has elapsed';
}
其中$ newest_date是2个日期中最新的日期,$ oldest_date是最低日期。通过以下计算获得600值:10分钟* 60秒= 600。