mirror of
https://github.com/php/php-src.git
synced 2024-12-12 19:33:31 +08:00
16 lines
354 B
PHP
16 lines
354 B
PHP
--TEST--
|
|
Bug #26090 (allow colons in time zone offset to strtotime())
|
|
--INI--
|
|
date.timezone=America/New_York
|
|
--FILE--
|
|
<?php
|
|
$t = '2003-10-28 10:20:30-0800';
|
|
echo date('Y-m-d H:i:s T', strtotime($t)) . "\n";
|
|
|
|
$t = '2003-10-28 10:20:30-08:00';
|
|
echo date('Y-m-d H:i:s T', strtotime($t)) . "\n";
|
|
?>
|
|
--EXPECT--
|
|
2003-10-28 13:20:30 EST
|
|
2003-10-28 13:20:30 EST
|