mb_stripos

(PHP 5 >= 5.2.0, PHP 7) Finds position of first occurrence of a string within another, case insensitive int mb_stripos ( string $haystack, string $needle [, int $offset = 0 [, string $encoding = mb_internal_encoding() ]] ) mb_stripos() returns the numeric position of the first occurrence of needle in the haystack string. Unlike mb_strpos(), mb_stripos() is case-insensitive. If needle is not found, it returns FALSE.

mb_strimwidth

(PHP 4 >= 4.0.6, PHP 5, PHP 7) Get truncated string with specified width string mb_strimwidth ( string $str, int $start, int $width [, string $trimmarker = "" [, string $encoding = mb_internal_encoding() ]] ) Truncates string str to specified width. Parameters: str The string being decoded. start The start position offset. Number o

mb_strcut

(PHP 4 >= 4.0.6, PHP 5, PHP 7) Get part of string string mb_strcut ( string $str, int $start [, int $length = NULL [, string $encoding = mb_internal_encoding() ]] ) mb_strcut() extracts a substring from a string similarly to mb_substr(), but operates on bytes instead of characters. If the cut position happens to be between two bytes of a multi-byte character, the cut is performed starting from the first byte of that cha

mb_split

(PHP 4 >= 4.2.0, PHP 5, PHP 7) Split multibyte string using regular expression array mb_split ( string $pattern, string $string [, int $limit = -1 ] ) Split a multibyte string using regular expression pattern and returns the result as an array. Parameters: pattern The regular expression pattern. string The string being split.

mb_send_mail

(PHP 4 >= 4.0.6, PHP 5, PHP 7) Send encoded mail bool mb_send_mail ( string $to, string $subject, string $message [, string $additional_headers = NULL [, string $additional_parameter = NULL ]] ) Sends email. Headers and messages are converted and encoded according to the mb_language() setting. It's a wrapper function for mail(), so see also mail() for details. Parameters: to

mb_regex_set_options

(PHP 4 >= 4.3.0, PHP 5, PHP 7) Set/Get the default options for mbregex functions string mb_regex_set_options ([ string $options = mb_regex_set_options() ] ) Sets the default options described by options for multibyte regex functions. Parameters: options The options to set. This is a string where each character is an option. To set a mode, the mode character must be th

mb_regex_encoding

(PHP 4 >= 4.2.0, PHP 5, PHP 7) Set/Get character encoding for multibyte regex mixed mb_regex_encoding ([ string $encoding = mb_regex_encoding() ] ) Set/Get character encoding for a multibyte regex. Parameters: encoding The encoding parameter is the character encoding. If it is omitted, the internal character encoding value will be used. Returns:

mb_preferred_mime_name

(PHP 4 >= 4.0.6, PHP 5, PHP 7) Get MIME charset string string mb_preferred_mime_name ( string $encoding ) Get a MIME charset string for a specific encoding. Parameters: encoding The encoding being checked. Returns: The MIME charset string for character encoding encoding. Examples:

mb_parse_str

(PHP 4 >= 4.0.6, PHP 5, PHP 7) Parse GET/POST/COOKIE data and set global variable bool mb_parse_str ( string $encoded_string [, array &$result ] ) Parses GET/POST/COOKIE data and sets global variables. Since PHP does not provide raw POST/COOKIE data, it can only be used for GET data for now. It parses URL encoded data, detects encoding, converts coding to internal encoding and set values to the result array or global

mb_output_handler

(PHP 4 >= 4.0.6, PHP 5, PHP 7) Callback function converts character encoding in output buffer string mb_output_handler ( string $contents, int $status ) mb_output_handler() is ob_start() callback function. mb_output_handler() converts characters in the output buffer from internal character encoding to HTTP output character encoding. Parameters: contents The contents of