summaryrefslogtreecommitdiff
path: root/Zend
diff options
context:
space:
mode:
authorMarcus Boerger <helly@php.net>2008-03-23 13:39:27 +0000
committerMarcus Boerger <helly@php.net>2008-03-23 13:39:27 +0000
commit03c3cfbde34f8bd807e9828c0a2016617bda2fbd (patch)
tree9abf8297ab237747661ac65cdbc9358b8444955b /Zend
parent978886a3a8b99d654a92c79cfc4e9d9fb7d8fb42 (diff)
downloadphp-git-03c3cfbde34f8bd807e9828c0a2016617bda2fbd.tar.gz
- MFH Add tests
Diffstat (limited to 'Zend')
-rwxr-xr-xZend/tests/multibyte/multibyte_encoding_001.phpt23
1 files changed, 23 insertions, 0 deletions
diff --git a/Zend/tests/multibyte/multibyte_encoding_001.phpt b/Zend/tests/multibyte/multibyte_encoding_001.phpt
new file mode 100755
index 0000000000..19b6064cfa
--- /dev/null
+++ b/Zend/tests/multibyte/multibyte_encoding_001.phpt
@@ -0,0 +1,23 @@
+--TEST--
+Zend Multibyte and ShiftJIS
+--SKIPIF--
+<?php
+if (!in_array("detect_unicode", array_keys(ini_get_all()))) {
+ die("skip Requires configure --enable-zend-multibyte option");
+}
+if (!extension_loaded("mbstring")) {
+ die("skip Requires mbstring extension");
+}
+?>
+--INI--
+mbstring.internal_encoding=SJIS
+--FILE--
+<?php
+declare(encoding='Shift_JIS');
+$s = "•\"; // 0x95+0x5c in script, not somewhere else "
+printf("%x:%x\n", ord($s[0]), ord($s[1]));
+?>
+===DONE===
+--EXPECT--
+95:5c
+===DONE===