本文介绍了PHP计算2个不同日期之间的天数的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
您好,感谢您的帮助.我在mysql中有一个带有2列(date1),(date2)的表.我想查找这两天之间的日期,并通过php计算每天10美元的价格
Hello and thanks for the help. I have a table in mysql with 2 columns (date1),(date2).I want to find the days between these two days and calculate a price of 10 dollars for each day through php
推荐答案
您要去的地方:
$dt1 = new DateTime("@{$date1}");
$dt2 = new DateTime("@{$date2}");
$interval = $dt1->diff($dt2);
$price = 10 * $interval->d;
这假定您将日期$date1
和$date2
保存为Unix时间戳
This assumes that you are saving your dates $date1
and $date2
as unix timestamps
这篇关于PHP计算2个不同日期之间的天数的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!