xref: /PHP-8.2/ext/date/tests/bug28024.phpt (revision f8d79582)
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