Получите 2 часа до данных в PHP

//set timezone
date_default_timezone_set('Asia/Kolkata');

//set an date and time to work with
$start = '2014-06-01 14:00:00';
echo date('Y-m-d H:i',strtotime('+1 hour +20 minutes',strtotime($start)));
Tyagi420