Skip to content

Instantly share code, notes, and snippets.

@pjaudiomv
Last active September 18, 2022 03:39
Show Gist options
  • Save pjaudiomv/78101f99b8721506fe4f7cfe819323ba to your computer and use it in GitHub Desktop.
Save pjaudiomv/78101f99b8721506fe4f7cfe819323ba to your computer and use it in GitHub Desktop.
Get All Timezones PHP
<?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