NAME ^

php_mbstring.pir - PHP mbstring Library

DESCRIPTION ^

Functions ^

bool mb_check_encoding([string var[, string encoding]])
Check if the string is valid for the specified encodingNOT IMPLEMENTED.
string mb_convert_case(string sourcestring, int mode [, string encoding])
Returns a case-folded version of sourcestringNOT IMPLEMENTED.
string mb_convert_encoding(string str, string to-encoding [, mixed from-encoding])
Returns converted string in desired encodingNOT IMPLEMENTED.
string mb_convert_kana(string str [, string option] [, string encoding])
Conversion between full-width character and half-width character (Japanese)NOT IMPLEMENTED.
string mb_convert_variables(string to-encoding, mixed from-encoding [, mixed ...])
Converts the string resource in variables to desired encodingNOT IMPLEMENTED.
string mb_decode_mimeheader(string string)
Decodes the MIME "encoded-word" in the stringNOT IMPLEMENTED.
string mb_decode_numericentity(string string, array convmap [, string encoding])
Converts HTML numeric entities to character codeNOT IMPLEMENTED.
string mb_detect_encoding(string str [, mixed encoding_list [, bool strict]])
Encodings of the given string is returned (as a string)NOT IMPLEMENTED.
bool|array mb_detect_order([mixed encoding-list])
Sets the current detect_order or Return the current detect_order as a arrayNOT IMPLEMENTED.
string mb_encode_mimeheader(string str [, string charset [, string transfer-encoding [, string linefeed [, int indent]]]])
Converts the string to MIME "encoded-word" in the format of =?charset?(B|Q)?encoded_string?=NOT IMPLEMENTED.
string mb_encode_numericentity(string string, array convmap [, string encoding])
Converts specified characters to HTML numeric entitiesNOT IMPLEMENTED.
int mb_ereg(string pattern, string string [, array registers])
Regular expression match for multibyte stringNOT IMPLEMENTED.
bool mb_ereg_match(string pattern, string string [,string option])
Regular expression match for multibyte stringNOT IMPLEMENTED.
string mb_ereg_replace(string pattern, string replacement, string string [, string option])
Replace regular expression for multibyte stringNOT IMPLEMENTED.
bool mb_ereg_search([string pattern[, string option]])
Regular expression search for multibyte stringNOT IMPLEMENTED.
int mb_ereg_search_getpos(void)
Get search start positionNOT IMPLEMENTED.
array mb_ereg_search_getregs(void)
Get matched substring of the last timeNOT IMPLEMENTED.
bool mb_ereg_search_init(string string [, string pattern[, string option]])
Initialize string and regular expression for search.NOT IMPLEMENTED.
array mb_ereg_search_pos([string pattern[, string option]])
Regular expression search for multibyte stringNOT IMPLEMENTED.
array mb_ereg_search_regs([string pattern[, string option]])
Regular expression search for multibyte stringNOT IMPLEMENTED.
bool mb_ereg_search_setpos(int position)
Set search start positionNOT IMPLEMENTED.
int mb_eregi(string pattern, string string [, array registers])
Case-insensitive regular expression match for multibyte stringNOT IMPLEMENTED.
string mb_eregi_replace(string pattern, string replacement, string string)
Case insensitive replace regular expression for multibyte stringNOT IMPLEMENTED.
mixed mb_get_info([string type])
Returns the current settings of mbstringNOT IMPLEMENTED.
mixed mb_http_input([string type])
Returns the input encodingNOT IMPLEMENTED.
string mb_http_output([string encoding])
Sets the current output_encoding or returns the current output_encoding as a stringNOT IMPLEMENTED.
string mb_internal_encoding([string encoding])
Sets the current internal encoding or Returns the current internal encoding as a stringNOT IMPLEMENTED.
string mb_language([string language])
Sets the current language or Returns the current language as a stringNOT IMPLEMENTED.
mixed mb_list_encodings()
Returns an array of all supported entity encodingsNOT IMPLEMENTED.
array mb_list_encodings_alias_names([string encoding])
Returns an array of all supported alias encodingsNOT IMPLEMENTED.
mixed mb_list_mime_names([string encoding])
Returns an array or string of all supported mime namesNOT IMPLEMENTED.
string mb_output_handler(string contents, int status)
Returns string in output buffer converted to the http_output encodingNOT IMPLEMENTED.
bool mb_parse_str(string encoded_string [, array result])
Parses GET/POST/COOKIE data and sets global variablesNOT IMPLEMENTED.
string mb_preferred_mime_name(string encoding)
Return the preferred MIME name (charset) as a stringNOT IMPLEMENTED.
string mb_regex_encoding([string encoding])
Returns the current encoding for regex as a string.NOT IMPLEMENTED.
string mb_regex_set_options([string options])
Set or get the default options for mbregex functionsNOT IMPLEMENTED.
int mb_send_mail(string to, string subject, string message [, string additional_headers [, string additional_parameters]])
* Sends an email message with MIME schemeNOT IMPLEMENTED.
array mb_split(string pattern, string string [, int limit])
split multibyte string into array by regular expressionNOT IMPLEMENTED.
string mb_strcut(string str, int start [, int length [, string encoding]])
Returns part of a stringNOT IMPLEMENTED.
string mb_strimwidth(string str, int start, int width [, string trimmarker [, string encoding]])
Trim the string in terminal widthNOT IMPLEMENTED.
int mb_stripos(string haystack, string needle [, int offset [, string encoding]])
Finds position of first occurrence of a string within another, case insensitiveNOT IMPLEMENTED.
string mb_stristr(string haystack, string needle[, bool part[, string encoding]])
Finds first occurrence of a string within another, case insensitiveNOT IMPLEMENTED.
int mb_strlen(string str [, string encoding])
Get character numbers of a stringNOT IMPLEMENTED.
int mb_strpos(string haystack, string needle [, int offset [, string encoding]])
Find position of first occurrence of a string within anotherNOT IMPLEMENTED.
string mb_strrchr(string haystack, string needle[, bool part[, string encoding]])
Finds the last occurrence of a character in a string within anotherNOT IMPLEMENTED.
string mb_strrichr(string haystack, string needle[, bool part[, string encoding]])
Finds the last occurrence of a character in a string within another, case insensitiveNOT IMPLEMENTED.
int mb_strripos(string haystack, string needle [, int offset [, string encoding]])
Finds position of last occurrence of a string within another, case insensitiveNOT IMPLEMENTED.
int mb_strrpos(string haystack, string needle [, int offset [, string encoding]])
Find position of last occurrence of a string within anotherNOT IMPLEMENTED.
string mb_strstr(string haystack, string needle[, bool part[, string encoding]])
Finds first occurrence of a string within anotherNOT IMPLEMENTED.
string mb_strtolower(string sourcestring [, string encoding])
* Returns a lowercased version of sourcestringNOT IMPLEMENTED.
string mb_strtoupper(string sourcestring [, string encoding])
* Returns a uppercased version of sourcestringNOT IMPLEMENTED.
int mb_strwidth(string str [, string encoding])
Gets terminal width of a stringNOT IMPLEMENTED.
mixed mb_substitute_character([mixed substchar])
Sets the current substitute_character or returns the current substitute_characterNOT IMPLEMENTED.
string mb_substr(string str, int start [, int length [, string encoding]])
Returns part of a stringNOT IMPLEMENTED.
int mb_substr_count(string haystack, string needle [, string encoding])
Count the number of substring occurrencesNOT IMPLEMENTED.


parrot