Is there a difference between the UTC and Etc/UTC time zones?

前端 未结 3 1726
清酒与你
清酒与你 2021-01-31 13:57

In the PHP documentation, list of supported time zones, UTC is listed twice:

  • UTC
  • Etc/UTC

Is there an

3条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2021-01-31 14:27

    ETC/GMT+4 is the same as GMT-4.

    public static void main(String[] args) {
        TimeZone tz = TimeZone.getTimeZone("Etc/GMT-7");
        System.out.println(tz);
    
        tz = TimeZone.getTimeZone("GMT+7");
        System.out.println(tz);
    
    }
    

    You can test it by yourself.

    But I don't know what ETC mean..

提交回复
热议问题