php-src/ext/date/tests/bug26090.phpt
2009-05-12 19:46:58 +00:00

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