libsoup3: update to 3.6.0; fix GTK2/3 app startup
[oi-userland.git] / components / web / php / php-8_1 / files / mbstring.ini
blobffce039ace63ea202c34ce6ca1b21ab58287904f
1 [mbstring]
2 extension=mbstring.so
4 ; language for internal character representation.
5 ;mbstring.language = Japanese
7 ; internal/script encoding.
8 ; Some encoding cannot work as internal encoding.
9 ; (e.g. SJIS, BIG5, ISO-2022-*)
10 ;mbstring.internal_encoding = EUC-JP
12 ; http input encoding.
13 ;mbstring.http_input = auto
15 ; http output encoding. mb_output_handler must be
16 ; registered as output buffer to function
17 ;mbstring.http_output = SJIS
19 ; enable automatic encoding translation according to
20 ; mbstring.internal_encoding setting. Input chars are
21 ; converted to internal encoding by setting this to On.
22 ; Note: Do _not_ use automatic encoding translation for
23 ; portable libs/applications.
24 ;mbstring.encoding_translation = Off
26 ; automatic encoding detection order.
27 ; auto means
28 ;mbstring.detect_order = auto
30 ; substitute_character used when character cannot be converted
31 ; one from another
32 ;mbstring.substitute_character = none;
34 ; overload(replace) single byte functions by mbstring functions.
35 ; mail(), ereg(), etc are overloaded by mb_send_mail(), mb_ereg(),
36 ; etc. Possible values are 0,1,2,4 or combination of them.
37 ; For example, 7 for overload everything.
38 ; 0: No overload
39 ; 1: Overload mail() function
40 ; 2: Overload str*() functions
41 ; 4: Overload ereg*() functions
42 ;mbstring.func_overload = 0