Guest User

Untitled

a guest
Jul 20th, 2018
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. public static function time_zone_options()
  2. {
  3. $options = array(
  4. 'Pacific/Honolulu' => '(GMT-10:00) Hawaii Time',
  5. 'America/Juneau' => '(GMT-09:00) Alaska Time',
  6. 'America/Los_Angeles' => '(GMT-08:00) Pacific Time',
  7. 'America/Denver' => '(GMT-07:00) Mountain Time',
  8. 'America/Phoenix' => '(GMT-07:00) Mountain Time - Arizona',
  9. 'America/Chicago' => '(GMT-06:00) Central Time',
  10. 'America/New_York' => '(GMT-05:00) Eastern Time',
  11. 'GMT' => '(GMT-00:00) Greenwich Mean Time'
  12. );
  13. return $options;
  14. }
  15. }
Add Comment
Please, Sign In to add comment