php-src/ext/date/tests/bug26320.phpt

17 lines
416 B
Plaintext
Raw Normal View History

--TEST--
2003-11-19 17:38:42 +00:00
Bug #26320 (strtotime handling of XML Schema/ISO 8601 format)
2009-05-12 19:46:58 +00:00
--INI--
date.timezone=GMT0
2006-04-25 22:09:46 +00:00
--SKIPIF--
if (!@putenv("TZ=GMT0") || getenv("TZ") != 'GMT0') {
die("skip unable to change TZ enviroment variable\n");
}
--FILE--
<?php
echo date("Y-m-d H:i:s\n", strtotime("2003-11-19T12:30:42"));
echo date("Y-m-d H:i:s\n", strtotime("2003-11-19T12:30:42Z"));
?>
--EXPECT--
2003-11-19 12:30:42
2006-04-25 22:09:46 +00:00
2003-11-19 12:30:42