Skip to content

Instantly share code, notes, and snippets.

@chiraggude
Created July 20, 2014 16:25
Show Gist options
  • Save chiraggude/3c3acf5977ce3c49e84a to your computer and use it in GitHub Desktop.
Save chiraggude/3c3acf5977ce3c49e84a to your computer and use it in GitHub Desktop.
Helper function to list Timezones
function getTimezones()
{
$zones_array1 = [];
$timestamp = time();
$timezones1 = timezone_identifiers_list();
foreach($timezones1 as $key => $zone)
{
date_default_timezone_set($zone);
$zones_array1[$zone] = 'UTC '. date('P', $timestamp) .' - '. $zone;
}
return $zones_array1;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment