我想将GMT时间更改为印度时间,我将添加5:30或4:30
$INDtime=$time->setTimezone(new DateTimeZone('IST'));//uk time
$time->setTimezone(new DateTimeZone('IST'));/india time
您可以尝试以下方法:
date_default_timezone_set("Asia/Kolkata");
echo "The Current time is:".time();