xref: /PHP-5.5/ext/date/tests/bug28024.phpt (revision e753493c)
1--TEST--
2Bug #28024 (Changed behavior of strtotime())
3--INI--
4date.timezone=Europe/Berlin
5--FILE--
6<?php
7	echo strtotime("17:00 2004-01-01"), "\n";
8	echo date("Y-m-d H:i:s T", strtotime("17:00 2004-01-01"));
9?>
10--EXPECT--
111072972800
122004-01-01 17:00:00 CET
13