summaryrefslogtreecommitdiff
path: root/ext/xmlrpc
diff options
context:
space:
mode:
authorFelipe Pena <felipe@php.net>2009-05-22 12:38:57 +0000
committerFelipe Pena <felipe@php.net>2009-05-22 12:38:57 +0000
commit50038a78f50b93d127bc797519fd9395156d67f3 (patch)
tree2a6731fbb254953452a24d23223e67ed1e4c36b6 /ext/xmlrpc
parentb33c51693bc0d52bbde7e9bb6d4221782a056bca (diff)
downloadphp-git-50038a78f50b93d127bc797519fd9395156d67f3.tar.gz
- New test
Diffstat (limited to 'ext/xmlrpc')
-rw-r--r--ext/xmlrpc/tests/bug44996.phpt49
1 files changed, 49 insertions, 0 deletions
diff --git a/ext/xmlrpc/tests/bug44996.phpt b/ext/xmlrpc/tests/bug44996.phpt
new file mode 100644
index 0000000000..dc1bc5d4f5
--- /dev/null
+++ b/ext/xmlrpc/tests/bug44996.phpt
@@ -0,0 +1,49 @@
+--TEST--
+Bug #44996 (xmlrpc_decode() ignores time zone on iso8601.datetime)
+--FILE--
+<?php
+
+function DecodeDatetime($datetime) {
+ print "\nISO 8601 datetime $datetime\n";
+ $obj = xmlrpc_decode("<?xml version=\"1.0\"?><methodResponse><params><param><value><dateTime.iso8601>$datetime</dateTime.iso8601></value></param></params></methodResponse>");
+ print_r($obj);
+}
+
+DecodeDatetime("20010909T01:46:40Z");
+DecodeDatetime("20010909T00:46:40-01");
+DecodeDatetime("2001-09-09T08:46:40+07:00");
+DecodeDatetime("2001-09-08T21:46:40-0400");
+
+?>
+--EXPECT--
+ISO 8601 datetime 20010909T01:46:40Z
+stdClass Object
+(
+ [scalar] => 20010909T01:46:40Z
+ [xmlrpc_type] => datetime
+ [timestamp] => 1000000000
+)
+
+ISO 8601 datetime 20010909T00:46:40-01
+stdClass Object
+(
+ [scalar] => 20010909T00:46:40-01
+ [xmlrpc_type] => datetime
+ [timestamp] => 1000000000
+)
+
+ISO 8601 datetime 2001-09-09T08:46:40+07:00
+stdClass Object
+(
+ [scalar] => 2001-09-09T08:46:40+07:00
+ [xmlrpc_type] => datetime
+ [timestamp] => 1000000000
+)
+
+ISO 8601 datetime 2001-09-08T21:46:40-0400
+stdClass Object
+(
+ [scalar] => 2001-09-08T21:46:40-0400
+ [xmlrpc_type] => datetime
+ [timestamp] => 1000000000
+)