Urmila Samariya has Published 145 Articles

PHP – mb_strrpos() function

Urmila Samariya

Urmila Samariya

Updated on 11-Oct-2021 13:44:01

143 Views

The mb_strrpos() function in PHP is used to find the position of the last occurrence of a string in another string. This function performs the multibyte safe strrpos() operation based on the number of characters. It counts the needle position from the starting of the haystack string.Syntaxint mb_strrpos( ... Read More

PHP – mb_stristr() function

Urmila Samariya

Urmila Samariya

Updated on 11-Oct-2021 13:40:34

92 Views

The mb_stristr() function in PHP is used to search the first existence of a string in another given string; this function is not case-sensitive. mb_stristr() searches for the first existence of the needle in a given haystack string and returns the portion of the haystack. It will return False if ... Read More

PHP – mb_stripos() function

Urmila Samariya

Urmila Samariya

Updated on 11-Oct-2021 13:38:47

291 Views

The mb_stripos() function in PHP is used to find the position of first occurrence of a string within another string. It is "case-insensitive". mbstripos() returns the numeric position of the first existence of the needle in a given haystack string. If the needle is not found, it will return False.Syntaxinteger ... Read More

PHP – mb_strrchr() function

Urmila Samariya

Urmila Samariya

Updated on 11-Oct-2021 13:37:14

80 Views

The mb_strrchr() function in PHP checks the last occurrence of a character in a given string within another string. For example, suppose we have a string "ia" and we need to check it from another given string "PHP tutorials", then the mb_strrchr() function will return the portion of characters till ... Read More

PHP – mb_strimwidth (multybyte strimwidth) function

Urmila Samariya

Urmila Samariya

Updated on 11-Oct-2021 13:32:09

593 Views

The mb_strimwidth() function in PHP is used to truncate a given string with specified width. It is used to cut out the specified width from a given string.Syntaxstring mb_strimwidth($str_string, $int_start, $int_width, $str_trim_marker, $str_encoding)For example, mb_strimwidth($str_string: "PHP Tutorials", $int_start: 2, $int_width: 10, $str_trim_marker: "...", ); Parametersmb_strimwidth() accepts five different parameters to ... Read More

PHP – mb_split (Multibyte Split) function

Urmila Samariya

Urmila Samariya

Updated on 11-Oct-2021 13:28:38

285 Views

The mb_split() function in PHP is used to split a multibyte string using regular expressions. It returns the results in an array format.Syntaxarray mb_split($str_pattern, $str_string, int $limit=-1)Parametersmb_split() accepts the following three parameters −$str_pattern − It is used for the regular expression's pattern.$str_string − It is used to split the string.$limit ... Read More

PHP – mb_preferred_mime_name() function

Urmila Samariya

Urmila Samariya

Updated on 11-Oct-2021 13:26:57

47 Views

The mb_preferred_mime_name() function in PHP is used to return the MIME string for the character encoding and it returns the charset string. It gets a MIME (Multipurpose Internet Mail Extensions) charset string for the specific encoding.Syntaxstring mb_preferred_mime_name($string_encoding)Parametersmb_preferred_mime_name() accepts only one parameter −$string_encoding − This parameter is used to check the ... Read More

PHP – Parse the GET, POST, and COOKIE data using mb_parse_str()

Urmila Samariya

Urmila Samariya

Updated on 11-Oct-2021 13:25:16

439 Views

The mb_parse_str() function in PHP is used to parse the GET, POST, and COOKIE data and it sets the global variable. It parses the URL encoded data and detects the encoding. After that, it converts the coding in the internal encoding and sets values for the global variables. This function ... Read More

PHP – How to get the Unicode point value of a given character?

Urmila Samariya

Urmila Samariya

Updated on 11-Oct-2021 13:22:14

2K+ Views

In PHP, we can use the mb_ord() function to get the Unicode code point value of a given character. This function is supported in PHP 7 or higher versions. The mb_ord() function complements the mc_chr() function.Syntaxint mb_ord($str_string, $str_encoding)Parametersmb_ord() accepts the following two parameters −$str_string − This parameter is used for ... Read More

PHP – Return an array of all supported encodings with mb_list_encodings()

Urmila Samariya

Urmila Samariya

Updated on 11-Oct-2021 13:17:35

179 Views

The mb_list_encodings() function in PHP is used to return an array of all supported encodings. This function is supported in PHP 5 or higher version.Syntaxarray mb_list_encodings()Parametersmb_list_encodings() takes no parameters.Return ValuesThis function returns a numerically indexed array.Errors/Exceptionsmb_list_encodings() does not produce any errors.Examplemb_list_encodings() does not produce any errors.OutputIt will produce the following ... Read More

Advertisements