Adding fixes in the unit tests for all the refactoring we did
[isso.git] / php520-test / Dates.php
1 <?php
2 /*=====================================================================*\
3 || ###################################################################
4 || # ISSO
5 || # Copyright (c)2005-2008 Blue Static
6 || #
7 || # This program is free software; you can redistribute it and/or modify
8 || # it under the terms of the GNU General Public License as published by
9 || # the Free Software Foundation; version 2 of the License.
10 || #
11 || # This program is distributed in the hope that it will be useful, but
12 || # WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
13 || # or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
14 || # more details.
15 || #
16 || # You should have received a copy of the GNU General Public License along
17 || # with this program; if not, write to the Free Software Foundation, Inc.,
18 || # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
19 || ###################################################################
20 \*=====================================================================*/
21
22 // timezone list
23 // print_r(DateTimeZone::listIdentifiers());
24
25 // try datetimezone
26 $tz = new DateTimeZone('US/Pacific');
27 // $tz = new DateTimeZone('US/Eastern');
28
29 // timestamps
30 // 1184454242 ~= Sat Jul 14 16:04:07 PDT 2007
31 $date = new DateTime('@1184454242');
32 $date->setTimeZone($tz);
33 echo $date->format('r');
34
35 ?>