Last active
September 18, 2022 03:39
-
-
Save pjaudiomv/78101f99b8721506fe4f7cfe819323ba to your computer and use it in GitHub Desktop.
Get All Timezones PHP
This file contains hidden or 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 | |
$timezones_array = DateTimeZone::listIdentifiers(); | |
foreach ($timezones_array as $tzItem) { | |
echo $tzItem . "\n"; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment