summaryrefslogtreecommitdiff
path: root/ext/date/tests/bug26090.phpt
blob: 4b81949c779b46ddcecd7404016c4c60c483db2c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
--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