Annotation of embedaddon/php/ext/iconv/tests/ob_iconv_handler.phpt, revision 1.1.1.1

1.1       misho       1: --TEST--
                      2: ob_iconv_handler()
                      3: --SKIPIF--
                      4: <?php include('skipif.inc'); ?>
                      5: --INI--
                      6: error_reporting=2039
                      7: --FILE--
                      8: <?php
                      9: /* include('test.inc'); */
                     10: iconv_set_encoding('internal_encoding', 'EUC-JP');
                     11: iconv_set_encoding('output_encoding', 'Shift_JIS');
                     12: ob_start('ob_iconv_handler');
                     13: print "、「、、、ヲ、ィ、ェ";
                     14: ob_end_flush();
                     15: ?>
                     16: --EXPECT--
                     17: あいうえお

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