mirror of
https://github.com/php/php-src.git
synced 2024-12-04 23:34:25 +08:00
11 lines
238 B
PHP
11 lines
238 B
PHP
--TEST--
|
|
Bug #26694 (strtotime() request for "Sun, 21 Dec 2003 20:38:33 +0000 GMT")
|
|
--INI--
|
|
date.timezone=GMT
|
|
--FILE--
|
|
<?php
|
|
echo gmdate("Y-m-d H:i:s", strtotime("Sun, 21 Dec 2003 20:38:33 +0000 GMT"));
|
|
?>
|
|
--EXPECT--
|
|
2003-12-21 20:38:33
|