summaryrefslogtreecommitdiff
path: root/ext/mbstring/php_mbregex.c
diff options
context:
space:
mode:
authorMoriyoshi Koizumi <moriyoshi@php.net>2005-02-20 22:18:09 +0000
committerMoriyoshi Koizumi <moriyoshi@php.net>2005-02-20 22:18:09 +0000
commit5b5e012bc2fcf2555d6390be3ee3e8b6aa1ee8c6 (patch)
tree35dfa7ce9435e697d8ead35b8a9d1ff64813d5bb /ext/mbstring/php_mbregex.c
parent8913ddc295e8ca91a84d7a3959ada6893dac35ea (diff)
downloadphp-git-5b5e012bc2fcf2555d6390be3ee3e8b6aa1ee8c6.tar.gz
- Update libmbfl (fixes bug #30549 and #31911).
- Update oniguruma to 3.7.0
Diffstat (limited to 'ext/mbstring/php_mbregex.c')
-rw-r--r--ext/mbstring/php_mbregex.c16
1 files changed, 16 insertions, 0 deletions
diff --git a/ext/mbstring/php_mbregex.c b/ext/mbstring/php_mbregex.c
index fdf9195b5f..b3f812fb48 100644
--- a/ext/mbstring/php_mbregex.c
+++ b/ext/mbstring/php_mbregex.c
@@ -125,6 +125,22 @@ php_mb_regex_enc_name_map_t enc_name_map[] ={
ONIG_ENCODING_UTF8
},
{
+ "UTF-16\0UTF-16BE\0",
+ ONIG_ENCODING_UTF16_BE
+ },
+ {
+ "UTF-16LE\0",
+ ONIG_ENCODING_UTF16_LE
+ },
+ {
+ "UCS-4\0UTF-32\0UTF-32BE\0",
+ ONIG_ENCODING_UTF32_BE
+ },
+ {
+ "UCS-4LE\0UTF-32LE\0",
+ ONIG_ENCODING_UTF32_LE
+ },
+ {
"SJIS\0CP932\0MS932\0SHIFT_JIS\0SJIS-WIN\0WINDOWS-31J\0",
ONIG_ENCODING_SJIS
},