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

1.1     ! misho       1: --TEST--
        !             2: Bug #33056 (strtotime() does not parse 20050518t090000Z)
        !             3: --FILE--
        !             4: <?php
        !             5: date_default_timezone_set("GMT");
        !             6: echo strtotime('20050518t090000Z')."\n";
        !             7: echo strtotime('20050518t091234Z')."\n";
        !             8: echo strtotime('20050518t191234Z')."\n";
        !             9: ?>
        !            10: --EXPECT--
        !            11: 1116406800
        !            12: 1116407554
        !            13: 1116443554

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