相对于当前(系统)时区,以PHP格式获取UTC偏移量的最简单方法是什么?
date('Z');
返回 UTC 偏移量(以秒为单位)。
// will output something like +02:00 or -04:00 echo date('P');