Lines Matching refs:s

25 $s = $sjis;
26 $s = mb_convert_encoding($s, 'EUC-JP', 'SJIS');
27 print("EUC-JP: $s\n"); // EUC-JP
29 $s = $jis;
30 $s = mb_convert_encoding($s, 'EUC-JP', 'JIS');
31 print("EUC-JP: $s\n"); // EUC-JP
33 $s = $euc_jp;
34 $s = mb_convert_encoding($s, 'SJIS', 'EUC-JP');
35 print("SJIS: ".base64_encode($s)."\n"); // SJIS
37 $s = $euc_jp;
38 $s = mb_convert_encoding($s, 'JIS', 'EUC-JP');
39 print("JIS: ".base64_encode($s)."\n"); // JIS
46 $s = $jis;
47 $s = mb_convert_encoding($s, 'EUC-JP', $a);
48 print("EUC-JP: $s\n"); // EUC-JP
50 $s = $euc_jp;
51 $s = mb_convert_encoding($s, 'SJIS', $a);
52 print("SJIS: ".base64_encode($s)."\n"); // SJIS
54 $s = $euc_jp;
55 $s = mb_convert_encoding($s, 'JIS', $a);
56 print("JIS: ".base64_encode($s)."\n"); // JIS
63 $s = $jis;
64 $s = mb_convert_encoding($s, 'EUC-JP', $a);
65 print("EUC-JP: $s\n"); // EUC-JP
67 $s = $euc_jp;
68 $s = mb_convert_encoding($s, 'SJIS', $a);
69 print("SJIS: ".base64_encode($s)."\n"); // SJIS
71 $s = $euc_jp;
72 $s = mb_convert_encoding($s, 'JIS', $a);
73 print("JIS: ".base64_encode($s)."\n"); // JIS
79 $s = $jis;
80 $s = mb_convert_encoding($s, 'EUC-JP', 'auto');
81 print("EUC-JP: $s\n"); // EUC-JP
83 $s = $euc_jp;
84 $s = mb_convert_encoding($s, 'SJIS', 'auto');
85 print("SJIS: ".base64_encode($s)."\n"); // SJIS
87 $s = $euc_jp;
88 $s = mb_convert_encoding($s, 'JIS', 'auto');
89 print("JIS: ".base64_encode($s)."\n"); // JIS
95 $s = mb_convert_encoding(1234, 'EUC-JP');
96 print("INT: $s\n"); // EUC-JP
98 $s = mb_convert_encoding('', 'EUC-JP');
99 print("EUC-JP: $s\n"); // SJIS
101 $s = $euc_jp;
102 $s = mb_convert_encoding($s, 'BAD');
103 print("BAD: $s\n"); // BAD
105 $s = $euc_jp;
106 $s = mb_convert_encoding($s);
107 print("MP: $s\n"); // Missing parameter