Output the daylight saving time, offset, and time zone name for the "act" time zone:
<?php$tzlist=timezone_abbreviations_list();print_r($tzlist["act"]);?>timezone_abbreviations_list() returns an associative array containing daylight saving time, offset, and time zone name.
timezone_abbreviations_list();
Return value: | Returns an associative array on success and FALSE on failure. |
---|---|
PHP version: | 5.2+ |