///Your time zone mention here
$myDateTime = new DateTime('2012-01-12 11:23', new DateTimeZone('Asia/Kolkata'));
///Want to desire time
$myDateTime->setTimezone(new DateTimeZone('Australia/Sydney'));
/* Like another Example */
//$myDateTime->setTimezone(new DateTimeZone('Asia/Baku'));
//$myDateTime->setTimezone(new DateTimeZone('Europe/London'));
echo $myDateTime->format('Y-m-d h:i');?>
$myDateTime = new DateTime('2012-01-12 11:23', new DateTimeZone('Asia/Kolkata'));
///Want to desire time
$myDateTime->setTimezone(new DateTimeZone('Australia/Sydney'));
/* Like another Example */
//$myDateTime->setTimezone(new DateTimeZone('Asia/Baku'));
//$myDateTime->setTimezone(new DateTimeZone('Europe/London'));
echo $myDateTime->format('Y-m-d h:i');?>
No comments:
Post a Comment