-
-
Save vrdriver/659562a150ba955063ad849e44dac2cc to your computer and use it in GitHub Desktop.
The perfect TimeZone selectbox list for PHP 5.3+
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 | |
$regions = array( | |
'Africa' => DateTimeZone::AFRICA, | |
'America' => DateTimeZone::AMERICA, | |
'Antarctica' => DateTimeZone::ANTARCTICA, | |
'Asia' => DateTimeZone::ASIA, | |
'Atlantic' => DateTimeZone::ATLANTIC, | |
'Australia' => DateTimeZone::AUSTRALIA, | |
'Europe' => DateTimeZone::EUROPE, | |
'Indian' => DateTimeZone::INDIAN, | |
'Pacific' => DateTimeZone::PACIFIC | |
); | |
$timezones = array(); | |
foreach ($regions as $name => $mask) | |
{ | |
$zones = DateTimeZone::listIdentifiers($mask); | |
foreach($zones as $timezone) | |
{ | |
// Lets sample the time there right now | |
$time = new DateTime(NULL, new DateTimeZone($timezone)); | |
// Us dumb Americans can't handle millitary time | |
$ampm = $time->format('H') > 12 ? ' ('. $time->format('g:i a'). ')' : ''; | |
// Remove region name and add a sample time | |
$timezones[$name][$timezone] = substr($timezone, strlen($name) + 1) . ' - ' . $time->format('H:i') . $ampm; | |
} | |
} | |
// View | |
echo '<label>Select Your Timezone</label>'; | |
echo '<select name="timezone">'; | |
foreach($timezones as $region => $list) | |
{ | |
echo '<optgroup label="' . $region . '">' . "\n"; | |
foreach($list as $timezone => $name) | |
{ | |
if($user_timezone_db_entry == $timezone) | |
{ | |
echo '<option SELECTED value="' . $timezone . '">' . $name . '</option>' . "\n"; | |
} | |
else | |
{ | |
echo '<option value="' . $timezone . '">' . $name . '</option>' . "\n"; | |
} | |
} | |
echo '<optgroup>' . "\n"; | |
} | |
echo '</select>'; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
A millions thanks, this is awesome and I'll apply it! <3