I'm trying to following code to get the difference in hours between 2 date/time values. The difference should be 47.82, but the result is 48.82. I can't figure out why.
$time1 = '11/03/2013 15:28:00';
$time2 = '11/01/2013 15:39:00';
$hourdiff = round((strtotime($time1) - strtotime($time2))/3600,2);
echo $hourdiff;
Any help is greatly appreciated.