From 99ece91073e4fb2a56acf211ba8e1ad101adb991 Mon Sep 17 00:00:00 2001
From: Robert Sesek <rsesek@bluestatic.org>
Date: Sat, 14 Jul 2007 23:14:27 +0000
Subject: [PATCH] Adding date tests

---
 php520-test/Dates.php | 41 +++++++++++++++++++++++++++++++++++++++++
 1 file changed, 41 insertions(+)
 create mode 100644 php520-test/Dates.php

diff --git a/php520-test/Dates.php b/php520-test/Dates.php
new file mode 100644
index 0000000..97c4e27
--- /dev/null
+++ b/php520-test/Dates.php
@@ -0,0 +1,41 @@
+<?php
+/*=====================================================================*\
+|| ###################################################################
+|| # ISSO
+|| # Copyright ©2002-[#]year[#] Blue Static
+|| #
+|| # This program is free software; you can redistribute it and/or modify
+|| # it under the terms of the GNU General Public License as published by
+|| # the Free Software Foundation; version [#]gpl[#] of the License.
+|| #
+|| # This program is distributed in the hope that it will be useful, but
+|| # WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+|| # or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
+|| # more details.
+|| #
+|| # You should have received a copy of the GNU General Public License along
+|| # with this program; if not, write to the Free Software Foundation, Inc.,
+|| # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
+|| ###################################################################
+\*=====================================================================*/
+
+// timezone list
+// print_r(DateTimeZone::listIdentifiers());
+
+// try datetimezone
+$tz = new DateTimeZone('US/Pacific');
+// $tz = new DateTimeZone('US/Eastern');
+
+// timestamps
+// 1184454242 ~= Sat Jul 14 16:04:07 PDT 2007
+$date = new DateTime('@1184454242');
+$date->setTimeZone($tz);
+echo $date->format('r');
+
+/*=====================================================================*\
+|| ###################################################################
+|| # $HeadURL$
+|| # $Id$
+|| ###################################################################
+\*=====================================================================*/
+?>
\ No newline at end of file
-- 
2.43.5