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

23 lines
509 B
Plaintext
Raw Normal View History

--TEST--
Bug #13142 (strtotime handling of "M d H:i:s Y" format)
2009-05-12 19:46:58 +00:00
--INI--
date.timezone=US/Eastern
--SKIPIF--
<?php
if (!@putenv("TZ=US/Eastern") || getenv("TZ") != 'US/Eastern') {
die("skip unable to change TZ enviroment variable\n");
}
?>
--FILE--
<?php
2009-05-12 19:46:58 +00:00
if (date('T') == 'GMT') {
putenv("TZ=EST5EDT4,M4.1.0,M10.5.0");
}
echo date("r\n", strtotime("Sep 04 16:39:45 2001"));
echo date("r\n", strtotime("Sep 04 2001 16:39:45"));
?>
--EXPECT--
2005-02-04 23:23:34 +00:00
Tue, 04 Sep 2001 16:39:45 -0400
Tue, 04 Sep 2001 16:39:45 -0400