php-internal-docs 8.4.8
Unofficial docs for php/php-src
Loading...
Searching...
No Matches
mbstring.stub.php
Go to the documentation of this file.
1<?php
2
4
5#ifdef HAVE_MBREGEX
10const MB_ONIGURUMA_VERSION = UNKNOWN;
11#endif
12
17const MB_CASE_UPPER = UNKNOWN;
22const MB_CASE_LOWER = UNKNOWN;
27const MB_CASE_TITLE = UNKNOWN;
32const MB_CASE_FOLD = UNKNOWN;
37const MB_CASE_UPPER_SIMPLE = UNKNOWN;
42const MB_CASE_LOWER_SIMPLE = UNKNOWN;
47const MB_CASE_TITLE_SIMPLE = UNKNOWN;
52const MB_CASE_FOLD_SIMPLE = UNKNOWN;
53
55function mb_language(?string $language = null): string|bool {}
56
58function mb_internal_encoding(?string $encoding = null): string|bool {}
59
64function mb_http_input(?string $type = null): array|string|false {}
65
67function mb_http_output(?string $encoding = null): string|bool {}
68
73function mb_detect_order(array|string|null $encoding = null): array|bool {}
74
76function mb_substitute_character(string|int|null $substitute_character = null): string|int|bool {}
77
79function mb_preferred_mime_name(string $encoding): string|false {}
80
82function mb_parse_str(string $string, &$result): bool {}
83
85function mb_output_handler(string $string, int $status): string {}
86
87function mb_str_split(string $string, int $length = 1, ?string $encoding = null): array {}
88
89function mb_strlen(string $string, ?string $encoding = null): int {}
90
91function mb_strpos(string $haystack, string $needle, int $offset = 0, ?string $encoding = null): int|false {}
92
93function mb_strrpos(string $haystack, string $needle, int $offset = 0, ?string $encoding = null): int|false {}
94
95function mb_stripos(string $haystack, string $needle, int $offset = 0, ?string $encoding = null): int|false {}
96
97function mb_strripos(string $haystack, string $needle, int $offset = 0, ?string $encoding = null): int|false {}
98
100function mb_strstr(string $haystack, string $needle, bool $before_needle = false, ?string $encoding = null): string|false {}
101
103function mb_strrchr(string $haystack, string $needle, bool $before_needle = false, ?string $encoding = null): string|false {}
104
106function mb_stristr(string $haystack, string $needle, bool $before_needle = false, ?string $encoding = null): string|false {}
107
109function mb_strrichr(string $haystack, string $needle, bool $before_needle = false, ?string $encoding = null): string|false {}
110
111function mb_substr_count(string $haystack, string $needle, ?string $encoding = null): int {}
112
114function mb_substr(string $string, int $start, ?int $length = null, ?string $encoding = null): string {}
115
117function mb_strcut(string $string, int $start, ?int $length = null, ?string $encoding = null): string {}
118
119function mb_strwidth(string $string, ?string $encoding = null): int {}
120
121function mb_strimwidth(string $string, int $start, int $width, string $trim_marker = "", ?string $encoding = null): string {}
122
127function mb_convert_encoding(array|string $string, string $to_encoding, array|string|null $from_encoding = null): array|string|false {}
128
130function mb_convert_case(string $string, int $mode, ?string $encoding = null): string {}
131
133function mb_strtoupper(string $string, ?string $encoding = null): string {}
134
136function mb_strtolower(string $string, ?string $encoding = null): string {}
137
138function mb_ucfirst(string $string, ?string $encoding = null): string {}
139
140function mb_lcfirst(string $string, ?string $encoding = null): string {}
141
142function mb_trim(string $string, ?string $characters = null, ?string $encoding = null): string {}
143
144function mb_ltrim(string $string, ?string $characters = null, ?string $encoding = null): string {}
145
146function mb_rtrim(string $string, ?string $characters = null, ?string $encoding = null): string {}
147
149function mb_detect_encoding(string $string, array|string|null $encodings = null, bool $strict = false): string|false {}
150
155
160function mb_encoding_aliases(string $encoding): array {}
161
163function mb_encode_mimeheader(string $string, ?string $charset = null, ?string $transfer_encoding = null, string $newline = "\r\n", int $indent = 0): string {}
164
166function mb_decode_mimeheader(string $string): string {}
167
169function mb_convert_kana(string $string, string $mode = "KV", ?string $encoding = null): string {}
170
172function mb_convert_variables(string $to_encoding, array|string $from_encoding, mixed &$var, mixed &...$vars): string|false {}
173
175function mb_encode_numericentity(string $string, array $map, ?string $encoding = null, bool $hex = false): string {}
176
178function mb_decode_numericentity(string $string, array $map, ?string $encoding = null): string {}
179
180function mb_send_mail(string $to, string $subject, string $message, array|string $additional_headers = [], ?string $additional_params = null): bool {}
181
186function mb_get_info(string $type = "all"): array|string|int|false|null {}
187
188function mb_check_encoding(array|string|null $value = null, ?string $encoding = null): bool {}
189
190function mb_scrub(string $string, ?string $encoding = null): string {}
191
192function mb_ord(string $string, ?string $encoding = null): int|false {}
193
194function mb_chr(int $codepoint, ?string $encoding = null): string|false {}
195
196function mb_str_pad(string $string, int $length, string $pad_string = " ", int $pad_type = STR_PAD_RIGHT, ?string $encoding = null): string {}
197
198#ifdef HAVE_MBREGEX
200function mb_regex_encoding(?string $encoding = null): string|bool {}
201
203function mb_ereg(string $pattern, string $string, &$matches = null): bool {}
204
206function mb_eregi(string $pattern, string $string, &$matches = null): bool {}
207
209function mb_ereg_replace(string $pattern, string $replacement, string $string, ?string $options = null): string|false|null {}
210
212function mb_eregi_replace(string $pattern, string $replacement, string $string, ?string $options = null): string|false|null {}
213
215function mb_ereg_replace_callback(string $pattern, callable $callback, string $string, ?string $options = null): string|false|null {}
216
221function mb_split(string $pattern, string $string, int $limit = -1): array|false {}
222
223function mb_ereg_match(string $pattern, string $string, ?string $options = null): bool {}
224
225function mb_ereg_search(?string $pattern = null, ?string $options = null): bool {}
226
231function mb_ereg_search_pos(?string $pattern = null, ?string $options = null): array|false {}
232
237function mb_ereg_search_regs(?string $pattern = null, ?string $options = null): array|false {}
238
239function mb_ereg_search_init(string $string, ?string $pattern = null, ?string $options = null): bool {}
240
246
248
249function mb_ereg_search_setpos(int $offset): bool {}
250
252function mb_regex_set_options(?string $options = null): string {}
253#endif
const STR_PAD_RIGHT
for($i=0; $i< 0x100;++$i) $map[chr(0)]
if(PHP_SAPI !='cli') if($argc< 1) $options
Definition ext_skel.php:376
foreach(explode("\n", $input) as $line) $result
mb_get_info(string $type="all")
const MB_CASE_LOWER
mb_send_mail(string $to, string $subject, string $message, array|string $additional_headers=[], ?string $additional_params=null)
mb_split(string $pattern, string $string, int $limit=-1)
mb_eregi_replace(string $pattern, string $replacement, string $string, ?string $options=null)
mb_convert_variables(string $to_encoding, array|string $from_encoding, mixed &$var, mixed &... $vars)
mb_strtoupper(string $string, ?string $encoding=null)
mb_trim(string $string, ?string $characters=null, ?string $encoding=null)
mb_strcut(string $string, int $start, ?int $length=null, ?string $encoding=null)
mb_strimwidth(string $string, int $start, int $width, string $trim_marker="", ?string $encoding=null)
mb_output_handler(string $string, int $status)
mb_encode_numericentity(string $string, array $map, ?string $encoding=null, bool $hex=false)
mb_decode_mimeheader(string $string)
mb_ereg_search_getregs()
mb_internal_encoding(?string $encoding=null)
mb_lcfirst(string $string, ?string $encoding=null)
mb_convert_case(string $string, int $mode, ?string $encoding=null)
mb_ereg_search_setpos(int $offset)
mb_scrub(string $string, ?string $encoding=null)
mb_strrpos(string $haystack, string $needle, int $offset=0, ?string $encoding=null)
mb_ucfirst(string $string, ?string $encoding=null)
mb_ereg_search_pos(?string $pattern=null, ?string $options=null)
mb_ereg_match(string $pattern, string $string, ?string $options=null)
mb_ereg_search(?string $pattern=null, ?string $options=null)
mb_regex_encoding(?string $encoding=null)
const MB_CASE_TITLE_SIMPLE
mb_ereg_replace(string $pattern, string $replacement, string $string, ?string $options=null)
const MB_CASE_FOLD_SIMPLE
mb_language(?string $language=null)
mb_ereg(string $pattern, string $string, &$matches=null)
mb_ereg_replace_callback(string $pattern, callable $callback, string $string, ?string $options=null)
mb_strstr(string $haystack, string $needle, bool $before_needle=false, ?string $encoding=null)
mb_preferred_mime_name(string $encoding)
mb_detect_encoding(string $string, array|string|null $encodings=null, bool $strict=false)
const MB_CASE_FOLD
mb_decode_numericentity(string $string, array $map, ?string $encoding=null)
mb_strripos(string $haystack, string $needle, int $offset=0, ?string $encoding=null)
mb_ereg_search_regs(?string $pattern=null, ?string $options=null)
mb_http_input(?string $type=null)
mb_check_encoding(array|string|null $value=null, ?string $encoding=null)
mb_substr_count(string $haystack, string $needle, ?string $encoding=null)
mb_encoding_aliases(string $encoding)
mb_chr(int $codepoint, ?string $encoding=null)
mb_str_pad(string $string, int $length, string $pad_string=" ", int $pad_type=STR_PAD_RIGHT, ?string $encoding=null)
mb_http_output(?string $encoding=null)
mb_stripos(string $haystack, string $needle, int $offset=0, ?string $encoding=null)
mb_detect_order(array|string|null $encoding=null)
mb_substitute_character(string|int|null $substitute_character=null)
mb_ereg_search_getpos()
const MB_CASE_TITLE
mb_encode_mimeheader(string $string, ?string $charset=null, ?string $transfer_encoding=null, string $newline="\r\n", int $indent=0)
mb_regex_set_options(?string $options=null)
mb_strwidth(string $string, ?string $encoding=null)
mb_convert_encoding(array|string $string, string $to_encoding, array|string|null $from_encoding=null)
mb_substr(string $string, int $start, ?int $length=null, ?string $encoding=null)
mb_ltrim(string $string, ?string $characters=null, ?string $encoding=null)
const MB_CASE_UPPER_SIMPLE
mb_list_encodings()
mb_convert_kana(string $string, string $mode="KV", ?string $encoding=null)
mb_strtolower(string $string, ?string $encoding=null)
mb_parse_str(string $string, &$result)
mb_ord(string $string, ?string $encoding=null)
mb_rtrim(string $string, ?string $characters=null, ?string $encoding=null)
const MB_CASE_LOWER_SIMPLE
const MB_CASE_UPPER
mb_strpos(string $haystack, string $needle, int $offset=0, ?string $encoding=null)
mb_stristr(string $haystack, string $needle, bool $before_needle=false, ?string $encoding=null)
mb_eregi(string $pattern, string $string, &$matches=null)
mb_ereg_search_init(string $string, ?string $pattern=null, ?string $options=null)
mb_strrchr(string $haystack, string $needle, bool $before_needle=false, ?string $encoding=null)
mb_strlen(string $string, ?string $encoding=null)
mb_strrichr(string $haystack, string $needle, bool $before_needle=false, ?string $encoding=null)
mb_str_split(string $string, int $length=1, ?string $encoding=null)
const MB_ONIGURUMA_VERSION
function(EX_VAR(opline->result.var))