how to fetch all supported timezones in PHP?

<?php

$timezone_offsets = array();

foreach(timezone_identifiers_list() as $timezone_identifier)

{

$date_time_zone = new DateTimeZone($timezone_identifier);

$date_time = new DateTime(‘now’, $date_time_zone);

$timezone_offsets[$timezone_identifier] = $date_time_zone->getOffset($date_time);

}

echo “<pre>”;

print_r($timezone_offsets);

?>


Comments

Leave a Reply

Your email address will not be published. Required fields are marked *