本文介绍了在PHP中减去2小时的时间的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
例如,我想从给定的时间中减去2小时,例如我正在获取时间2016-07-15T06:20:00,而我想从中减去2小时,例如2016-07-15T04:20:00
I want to subtract 2 hours from given time for example I am getting time 2016-07-15T06:20:00 and I want to subtract 2 hours from it like 2016-07-15T04:20:00
推荐答案
您可以为此使用DateTime
类.
$DateTime = new DateTime();
$DateTime->modify('-2 hours');
echo $DateTime->format("Y-m-dTH:i:s");
这篇关于在PHP中减去2小时的时间的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!