php – 如何将日期转换为小时

我有:

hours1 : 403440

和date2:2016/01/10

我需要在几小时内转换date2并找到两者之间的差异,这应该再次以小时为单位.

最佳答案 日期的第二个参数是一个unix时间戳,以秒为单位,因此将您的小时数乘以3600(每小时3600秒).

$hours1 = 403440 * 3600;
$date1 = date("d-m-Y H:i:s", $hours1);
echo $date1;

输出:

09-01-2016 19:00:00

根据您的更新,您的代码应为:

$date2 = strtotime('2016/01/10');//get date to seconds from 1970
$hours1 = 403440 * 3600; // convert from hours to seconds
echo ($date2 - $hours1)/3600;//subtract seconds then divide by 3600 to get how many hours difference is

输出:

5
点赞