$date = $feed[$x]['date']; // Date string = 04-29-2013
$time = $feed[$x]['time']; // Time string = 11:30pm
我需要将时间增加 2 小时,但日期也必须正确。
如何将 2 小时添加到此字符串或我需要添加到它的 x 小时。
$date = $feed[$x]['date']; // Date string = 04-29-2013
$time = $feed[$x]['time']; // Time string = 11:30pm
我需要将时间增加 2 小时,但日期也必须正确。
如何将 2 小时添加到此字符串或我需要添加到它的 x 小时。
$date = '04-29-2013';
$time = '11:30pm';
$compound = $date . ' ' . $time;
$dt = DateTime::createFromFormat('m-d-Y h:ia', $compound);
$dt->modify('+2 hour');
$newDate = $dt->format('m-d-Y');
$newTime = $dt->format('h:ia');
var_dump($newDate, $newTime);
在线演示:http: //ideone.com/x4WgDV