mirror of
https://github.com/php/php-src.git
synced 2024-11-25 19:05:31 +08:00
23 lines
509 B
PHP
23 lines
509 B
PHP
--TEST--
|
|
Bug #13142 (strtotime handling of "M d H:i:s Y" format)
|
|
--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
|
|
|
|
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--
|
|
Tue, 04 Sep 2001 16:39:45 -0400
|
|
Tue, 04 Sep 2001 16:39:45 -0400
|