Last active
March 8, 2022 18:31
-
-
Save guimadaleno/87b2cee8f4a962d2d9dd to your computer and use it in GitHub Desktop.
List all timezones in PHP
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$tzList = DateTimeZone::listIdentifiers(DateTimeZone::ALL); | |
var_dump($tzList); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment