source: trunk/prototype/timezones.php @ 7036

Revision 7036, 386 bytes checked in by acoutinho, 12 years ago (diff)

Ticket #3035 - Insconsistencia ao trocar fuso-horario do evento (timezones)

Line 
1<?php
2
3$zones = timezone_identifiers_list();
4$Time = new DateTime('now', new DateTimeZone('UTC'));
5$timezone = array();
6
7       
8foreach ($zones as $zone)
9{
10    $timezone['timezones'][$zone] = $Time->setTimezone(new DateTimeZone($zone))->format('O');
11}
12
13$localtime = localtime(time(), true);
14$timezone['isDaylightSaving'] =  !!$localtime['tm_isdst'];
15
16echo json_encode($timezone);
17
18?>
Note: See TracBrowser for help on using the repository browser.