summaryrefslogtreecommitdiff
path: root/ext/date/tests/date_modify-2.phpt
diff options
context:
space:
mode:
authorSVN Migration <svn@php.net>2006-10-15 21:09:28 +0000
committerSVN Migration <svn@php.net>2006-10-15 21:09:28 +0000
commit88ec761548b66f58acc1a86cdd0fc164ca925476 (patch)
treed0af978fa00d83bb1d82c613f66477fbd6bb18aa /ext/date/tests/date_modify-2.phpt
parent268984b4787e797db6054313fc9ba3b9e845306e (diff)
downloadphp-git-PECL_OPENSSL.tar.gz
This commit was manufactured by cvs2svn to create branch 'PECL_OPENSSL'.PECL_OPENSSL
Diffstat (limited to 'ext/date/tests/date_modify-2.phpt')
-rw-r--r--ext/date/tests/date_modify-2.phpt15
1 files changed, 0 insertions, 15 deletions
diff --git a/ext/date/tests/date_modify-2.phpt b/ext/date/tests/date_modify-2.phpt
deleted file mode 100644
index cc197fcdc4..0000000000
--- a/ext/date/tests/date_modify-2.phpt
+++ /dev/null
@@ -1,15 +0,0 @@
---TEST--
-date_modify() function [2]
---SKIPIF--
-<?php if (!function_exists('date_create')) echo "SKIP"; ?>
---FILE--
-<?php
-date_default_timezone_set("GMT");
-$d = date_create("2005-07-18 22:10:00 +0400");
-echo date_format($d, 'D, d M Y H:i:s T'), "\n";
-date_modify($d, "+1 hour");
-echo date_format($d, 'D, d M Y H:i:s T'), "\n";
-?>
---EXPECT--
-Mon, 18 Jul 2005 22:10:00 GMT+0400
-Mon, 18 Jul 2005 23:10:00 GMT+0400