我有一个包含日期/时间的字符串,我知道它目前在澳大利亚/悉尼时区。
我现在需要将其更改为 GMT 时间。
我试过这个,但它没有改变日期:
$dateString = '2012-06-29 11:09:12'; // this is in Australia/Sydney timezone
$gmtDate = gmdate('Y-m-d H:i:s', strtotime($dateString));
print_r($gmtDate); // output is 2012-06-29 11:09:12
如何以某种方式从 gmt 中减去偏移量,对不起,有点困惑。