php-src/ext/mbstring/tests/mb_output_handler_runtime_ini_alteration-02.phpt

21 lines
574 B
Plaintext
Raw Normal View History

--TEST--
mb_output_handler() and mbstring.http_output_content_type_regex alteration in runtime (2)
--SKIPIF--
<?php extension_loaded('mbstring') or die('skip mbstring not available'); ?>
--INI--
mbstring.internal_encoding=UTF-8
mbstring.http_output_content_type_regex=html
--FILE--
<?php
mb_http_output("EUC-JP");
ini_set('mbstring.http_output_content_type_regex', 'application');
header("Content-Type: text/html");
ob_start();
ob_start('mb_output_handler');
echo "テスト";
ob_end_flush();
var_dump(bin2hex(ob_get_clean()));
?>
--EXPECT--
string(18) "e38386e382b9e38388"