Answer by Khan Sharukh for PHP Timezone List
Added missing countries to the existing answers $country_timezone = array('Asia/Kabul' => 'Afghanistan','Europe/Tirane' => 'Albania','Africa/Algiers' => 'Algeria','Pacific/Pago_Pago' =>...
View ArticleAnswer by Diego Favero for PHP Timezone List
from @chpx 's answer:function getAllTimeZones(){$selectOptions = ""; foreach(\DateTimeZone::listIdentifiers() as $zoneLabel) { $currentTimeInZone = new \DateTime("now", new \DateTimeZone($zoneLabel));...
View ArticleAnswer by chpx for PHP Timezone List
The below outputs the HTML <option>'s with all timezones specified in the $desiredRegions array.function getAllTimeZones(){ $zoneIdentifiers = timezone_identifiers_list(); $zoneLocations =...
View ArticleAnswer by Kamlesh for PHP Timezone List
$america_timezones_list = array('+00:00' => '(+00:00) Danmarkshavn','-01:00' => '(-01:00) Scoresbysund','-02:00' => '(-02:00) Noronha','-03:00' => '(-03:00) Montevideo','-03:00' =>...
View ArticleAnswer by Peter Pan for PHP Timezone List
I would like to leave here this idea:/*----------TIME ZONE LIST---------*/function TZList($data_type = false){ $_all_timezone_identifiers = DateTimeZone::listIdentifiers(DateTimeZone::ALL);...
View ArticleAnswer by Joel Joseph for PHP Timezone List
if you are looking to generate a similar timezone list as give in the image below You can use the following php code to generate the dropdown list using the DateTimeZone::listIdentifiers --...
View ArticleAnswer by Milan Markovic for PHP Timezone List
This is the solution that I find better than a hardcoded array, because offsets are calculated dynamically.<?php function toGmtOffset($timezone){ $userTimeZone = new DateTimeZone($timezone); $offset...
View ArticleAnswer by Faiyaz Alam for PHP Timezone List
try this:<?php/** * Timezones list with GMT offset * * @return array * @link http://stackoverflow.com/a/9328760 */function tz_list() { $zones_array = array(); $timestamp = time();...
View ArticleAnswer by kami for PHP Timezone List
I used both lists from Jiew Meng and Tamás Pap, for each I checked PHP support of timezone identifier (PHP supports less than world knows), and made a composite list. For those Timezones which were in...
View ArticleAnswer by Meezaan-ud-Din for PHP Timezone List
Try the following code from How do I get Greenwich Mean Time in PHP?. I use it on one of my apps, but you can change the markup to display whatever you want:public function tz_list() { $zones_array =...
View ArticleAnswer by mike for PHP Timezone List
I have just had the same problem of making an easy to use time zone list. So I am using geoip (http://freegeoip.net) to get the user's country and then using:$nearest_time_zones =...
View ArticleAnswer by Tamás Pap for PHP Timezone List
A completed list, I use in my apps:(Also check out: https://github.com/paptamas/timezones)<?php$timezones = array ('(GMT-12:00) International Date Line West' => 'Pacific/Wake','(GMT-11:00) Midway...
View ArticleAnswer by Eugene Manuilov for PHP Timezone List
Take my array of time zones, which I made specially for select element. It is associated array where key is PHP time zone and value is human representation. This is it:$timezones =...
View ArticleAnswer by Paul Scheltema for PHP Timezone List
this method relies on your operating system, to make it so that it always works, just store the excisting timezones in an array/database, also you need to take into account the daylightsavingstime(s)...
View ArticlePHP Timezone List
I am looking for a way to generate a list of timezones for display in a <select>Generating a drop down list of timezones with PHP $list = DateTimeZone::listAbbreviations(); $idents =...
View Article