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

1.1     ! misho       1: --TEST--
        !             2: Testing bug #65371
        !             3: --INI--
        !             4: date.timezone=Europe/Berlin
        !             5: --FILE--
        !             6: <?php
        !             7: 
        !             8: function p($str)
        !             9: {
        !            10:   echo $str, "\n";
        !            11:   echo strftime($str), "\n";
        !            12:   echo bin2hex($str), "\n";
        !            13:   echo bin2hex(strftime($str));
        !            14: }
        !            15: 
        !            16: setlocale(LC_ALL, 'C');
        !            17: p('あ');
        !            18: --EXPECT--
        !            19: あ
        !            20: あ
        !            21: e38182
        !            22: e38182

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