# List all time zone abbreviations
$list = timezone_abbreviations_list();
foreach( $list as $key=>$val )
 {
  echo "
$key
";
  foreach( $val as $key_2=>$val_2 )
   {
    echo " Time zone ID: $val_2[timezone_id]
";
    echo "  Offset: $val_2[offset]
";
    if ( $val_2[dst] == 1 )
     { echo "  Daylight Savings Time
"; }
   }
 }
/* More time zone functions
timezone_abbreviations_list
timezone_identifiers_list
timezone_name_from_abbr
timezone_name_get
timezone_offset_get
*/
?>