mirror of
https://github.com/php/php-src.git
synced 2024-12-14 20:33:36 +08:00
22 lines
521 B
PHP
22 lines
521 B
PHP
--TEST--
|
|
mb_output_handler() (EUC-JP)
|
|
--SKIPIF--
|
|
<?php extension_loaded('mbstring') or die('skip mbstring not available'); ?>
|
|
--FILE--
|
|
<?php
|
|
// TODO: Do real test
|
|
|
|
// EUC-JP
|
|
$euc_jp = "テスト用日本語文字列。このモジュールはPHPにマルチバイト関数を提供します。";
|
|
mb_http_output('EUC-JP') or print("mb_http_output() failed\n");
|
|
ob_start('mb_output_handler');
|
|
echo $euc_jp;
|
|
$output = ob_get_clean();
|
|
|
|
var_dump( $output );
|
|
|
|
?>
|
|
|
|
--EXPECT--
|
|
string(73) "テスト用日本語文字列。このモジュールはPHPにマルチバイト関数を提供します。"
|