i want to change GMT time to INDIAN time,i will add 5:30 or 4:30
$INDtime=$time->setTimezone(new DateTimeZone('IST'));//uk time
$time->setTimezone(new DateTimeZone('IST'));/india time
i want to change GMT time to INDIAN time,i will add 5:30 or 4:30
$INDtime=$time->setTimezone(new DateTimeZone('IST'));//uk time
$time->setTimezone(new DateTimeZone('IST'));/india time
You could try this:
date_default_timezone_set("Asia/Kolkata");
echo "The Current time is:".time();