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

12 lines
306 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)
--FILE--
<?php
2009-10-10 00:31:18 +00:00
date_default_timezone_set('GMT0');
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:10:38 +00:00
2003-11-19 12:30:42