diff options
Diffstat (limited to 'ext/mbstring/tests/mb_detect_encoding.phpt')
-rw-r--r-- | ext/mbstring/tests/mb_detect_encoding.phpt | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/ext/mbstring/tests/mb_detect_encoding.phpt b/ext/mbstring/tests/mb_detect_encoding.phpt index 4fd22a69c3..d50330849c 100644 --- a/ext/mbstring/tests/mb_detect_encoding.phpt +++ b/ext/mbstring/tests/mb_detect_encoding.phpt @@ -23,7 +23,7 @@ $euc_jp = '日本語テキストです。0123456789。'; echo "== BASIC TEST ==\n"; $s = $sjis; $s = mb_detect_encoding($s, 'SJIS'); -print("SJIS: $s\n"); +print("SJIS: $s\n"); $s = $jis; $s = mb_detect_encoding($s, 'JIS'); @@ -39,7 +39,7 @@ print("EUC-JP: $s\n"); -// Using Encoding List Array +// Using Encoding List Array echo "== ARRAY ENCODING LIST ==\n"; $a = array(0=>'UTF-8',1=>'EUC-JP', 2=>'SJIS', 3=>'JIS'); @@ -55,10 +55,10 @@ print("EUC-JP: $s\n"); $s = $sjis; $s = mb_detect_encoding($s, $a); -print("SJIS: $s\n"); +print("SJIS: $s\n"); -// Using Detect Order +// Using Detect Order echo "== DETECT ORDER ==\n"; mb_detect_order('auto'); @@ -66,15 +66,15 @@ mb_detect_order('auto'); $s = $jis; $s = mb_detect_encoding($s); -print("JIS: $s\n"); +print("JIS: $s\n"); $s = $euc_jp; $s = mb_detect_encoding($s); -print("EUC-JP: $s\n"); +print("EUC-JP: $s\n"); $s = $sjis; $s = mb_detect_encoding($s); -print("SJIS: $s\n"); +print("SJIS: $s\n"); // Invalid(?) Parameters |