Annotation of embedaddon/php/ext/date/tests/bug28024.phpt, revision 1.1

1.1     ! misho       1: --TEST--
        !             2: Bug #28024 (Changed behavior of strtotime())
        !             3: --INI--
        !             4: date.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--
        !            11: 1072972800
        !            12: 2004-01-01 17:00:00 CET

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>