1--TEST-- 2zend multibyte (5) 3--SKIPIF-- 4--INI-- 5zend.multibyte=On 6zend.script_encoding=EUC-JP 7mbstring.internal_encoding=UTF-8 8--FILE-- 9<?php 10// forcefully interpret an UTF-8 encoded string as EUC-JP and then convert it 11// back to UTF-8. There should be only a pair of consecutive bytes that is 12// valid EUC-encoded character "鴻". 13var_dump(bin2hex("テスト")); 14?> 15--EXPECT-- 16string(16) "3f3f3fe9b4bb3f3f" 17