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

1.1     ! misho       1: --TEST--
        !             2: Bug #35705 (strtotime() fails to parse soap date format without TZ)
        !             3: --FILE--
        !             4: <?php
        !             5: date_default_timezone_set("UTC");
        !             6: 
        !             7: echo date(DATE_ISO8601, strtotime('2000-10-10T10:12:30.000')) . "\n";
        !             8: 
        !             9: ?>
        !            10: --EXPECT--
        !            11: 2000-10-10T10:12:30+0000

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