如何计算2个值的分钟差异: -
strtotime("-15 minutes");
strtotime("now");
我使用了以下代码: -
$diff = floor(strtotime("now") - strtotime("-15 minutes")/3600 );
但它给出了5天的差异。 请指导我错在哪里。
答案 0 :(得分:1)
首先,你得到小时差异,除法为3600. 15分钟时评估为0。此外,您只是将第二个变量与第一个变量除以这些括号。 这应该有效:
$diff=floor((strtotime("now") - strtotime("-15 minutes"))/60);
echo $diff;// outputs 15