mirror of
https://github.com/php/php-src.git
synced 2025-08-16 05:58:45 +02:00

This is a mix of more automated and manual migration. It should remove all applicable extension_loaded() checks outside of skipif.inc files.
15 lines
373 B
PHP
15 lines
373 B
PHP
--TEST--
|
||
mb_output_handler() (Shift_JIS)
|
||
--EXTENSIONS--
|
||
mbstring
|
||
--INI--
|
||
output_handler=mb_output_handler
|
||
internal_encoding=Shift_JIS
|
||
output_encoding=EUC-JP
|
||
--FILE--
|
||
<?php
|
||
// Shift_JIS
|
||
var_dump("テスト用日本語文字列。このモジュールはPHPにマルチバイト関数を提供します。");
|
||
?>
|
||
--EXPECT--
|
||
string(73) "・ニ・ケ・ネヘムニ<EFBE91>ワク<EFBE9C>クサ昀<EFBDBB>」、ウ、ホ・筵ク・蝪シ・<EFBDBC>マPHP、ヒ・゙・<EFBE9E>チ・ミ・、・ネエリソ<EFBE98><EFBDBF><EFBFBD>。、キ、゙、ケ。」"
|