summaryrefslogtreecommitdiff
path: root/ext/mbstring/php_mbregex.c
diff options
context:
space:
mode:
authorMoriyoshi Koizumi <moriyoshi@php.net>2005-02-20 23:02:53 +0000
committerMoriyoshi Koizumi <moriyoshi@php.net>2005-02-20 23:02:53 +0000
commitc298ea82ca83b11a400908a0900dd0d1c6774125 (patch)
tree403adede1256abd8c37f241aae075e77ac4d1e76 /ext/mbstring/php_mbregex.c
parent81908607765f0b36fa46f31751ee4bbefd949200 (diff)
downloadphp-git-c298ea82ca83b11a400908a0900dd0d1c6774125.tar.gz
- MFH: Update libmbfl
- MFH: 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 b1543f2909..31843de2b5 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
},