Annotation of embedaddon/php/ext/mbstring/tests/mb_output_handler_pattern-08.phpt, revision 1.1

1.1     ! misho       1: --TEST--
        !             2: mb_output_handler() and mbstring.http_output_conv_mimetypes (8)
        !             3: --SKIPIF--
        !             4: <?php extension_loaded('mbstring') or die('skip mbstring not available'); ?>
        !             5: --INI--
        !             6: mbstring.internal_encoding=UTF-8
        !             7: mbstring.http_output_conv_mimetypes=html
        !             8: --FILE--
        !             9: <?php
        !            10: mb_http_output("EUC-JP");
        !            11: header("Content-Type: text/plain");
        !            12: ob_start();
        !            13: ob_start('mb_output_handler');
        !            14: echo "ใƒ†ใ‚นใƒˆ";
        !            15: ob_end_flush();
        !            16: var_dump(bin2hex(ob_get_clean()));
        !            17: ?>
        !            18: --EXPECT--
        !            19: string(18) "e38386e382b9e38388"

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