PHP Datetime Format Date Heure selon un fuseau horaire

$date = new \DateTime($his['DATE_TIME']);
															$date->setTimezone(new \DateTimeZone('Asia/Karachi')); 
															echo $date->format('F j, Y, g:i a');
Fani385