]>
src.bluestatic.org Git - isso.git/blob - php520-test/Dates.php
2 /*=====================================================================*\
3 || ###################################################################
5 || # Copyright (c)2002-2007 Blue Static
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.
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
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 \*=====================================================================*/
23 // print_r(DateTimeZone::listIdentifiers());
26 $tz = new DateTimeZone('US/Pacific');
27 // $tz = new DateTimeZone('US/Eastern');
30 // 1184454242 ~= Sat Jul 14 16:04:07 PDT 2007
31 $date = new DateTime('@1184454242');
32 $date->setTimeZone($tz);
33 echo $date->format('r');