php-src/ext/mbstring/tests/mb_output_handler_pattern-10.phpt

20 lines
493 B
Plaintext
Raw Normal View History

--TEST--
2008-07-24 13:49:39 +00:00
mb_output_handler() and mbstring.http_output_conv_mimetypes (10)
--SKIPIF--
<?php extension_loaded('mbstring') or die('skip mbstring not available'); ?>
--INI--
mbstring.internal_encoding=UTF-8
2008-07-24 13:49:39 +00:00
mbstring.http_output_conv_mimetypes=html
--FILE--
<?php
mb_http_output("EUC-JP");
header("Content-Type: application/octet-stream");
ob_start();
ob_start('mb_output_handler');
echo "テスト";
ob_end_flush();
var_dump(bin2hex(ob_get_clean()));
?>
--EXPECT--
string(18) "e38386e382b9e38388"