What does Etc mean in time zone definitions

I can't believe this hasn't been asked before, but I can't find it on SE — or even on the googletron.

What does "Etc" mean in time zone definitions?

Example: php's

date_default_timezone_set('Etc/GMT');

1 Answer

The zone identifiers starting with "Etc/..." come from TZDB-repository maintained by Paul Eggert and hosted by IANA. There is following private non-official github-based repository (labelled as experimental but can be considered as preparing repository for TZDB):

There you will find an etcetera-file. The zone identifiers mentioned above are available in this file. So the answer is:

"Etc" stands for "et cetera" (latin for "and so forth").

About the motivation of such naming, I think it is best to directly ask the maintainer of TZDB-repository Paul Eggert on the IANA-mailing-list.

3

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy

You Might Also Like