blob: b5f97bd5c94906ada373eb448941d9c97c500b7a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
--TEST--
Bug #28024 (Changed behavior of strtotime())
--INI--
date.timezone=Europe/Berlin
--FILE--
<?php
echo strtotime("17:00 2004-01-01"), "\n";
echo date("Y-m-d H:i:s T", strtotime("17:00 2004-01-01"));
?>
--EXPECT--
1072972800
2004-01-01 17:00:00 CET
|