mirror of
https://github.com/php/php-src.git
synced 2024-12-26 18:29:37 +08:00
13 lines
201 B
PHP
13 lines
201 B
PHP
--TEST--
|
|
Bug #14561 (strtotime() bug)
|
|
--INI--
|
|
date.timezone=GMT
|
|
--FILE--
|
|
<?php
|
|
echo strtotime("19:30 Dec 17 2005"), "\n";
|
|
echo strtotime("Dec 17 19:30 2005"), "\n";
|
|
?>
|
|
--EXPECT--
|
|
1134847800
|
|
1134847800
|