Lines Matching refs:mb_convert_encoding
2 mb_convert_encoding()
23 $s = mb_convert_encoding($s, 'EUC-JP', 'SJIS');
27 $s = mb_convert_encoding($s, 'EUC-JP', 'JIS');
31 $s = mb_convert_encoding($s, 'SJIS', 'EUC-JP');
35 $s = mb_convert_encoding($s, 'JIS', 'EUC-JP');
44 $s = mb_convert_encoding($s, 'EUC-JP', $a);
48 $s = mb_convert_encoding($s, 'SJIS', $a);
52 $s = mb_convert_encoding($s, 'JIS', $a);
61 $s = mb_convert_encoding($s, 'EUC-JP', $a);
65 $s = mb_convert_encoding($s, 'SJIS', $a);
69 $s = mb_convert_encoding($s, 'JIS', $a);
77 $s = mb_convert_encoding($s, 'EUC-JP', 'auto');
81 $s = mb_convert_encoding($s, 'SJIS', 'auto');
85 $s = mb_convert_encoding($s, 'JIS', 'auto');
92 $s = mb_convert_encoding(1234, 'EUC-JP');
95 $s = mb_convert_encoding('', 'EUC-JP');
100 var_dump( mb_convert_encoding($s, 'BAD') );
127 mb_convert_encoding(): Argument #2 ($to_encoding) must be a valid encoding, "BAD" given