IST to EST time conversion using PHP
<?php
$dt = new DateTime('2011-02-22 16:15:20', new DateTimeZone('Asia/Kolkata'));
echo $dt->format('r') . PHP_EOL;
$dt->setTimezone(new DateTimeZone('US/Eastern'));
echo $dt->format('r') . PHP_EOL;
//Second example
$time = new DateTime('now', new DateTimeZone('UTC'));
// then convert it to IST by
$time->setTimezone(new DateTimeZone('IST'));
echo $dt->format('r');
?>
Comments
Post a Comment
Thank you :)