
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Urmila Samariya has Published 135 Articles

Urmila Samariya
467 Views
The mb_strcut() function in PHP is used to get a part of a specified string. It extracts the substring from a given string. It operates on bytes instead of characters. If the cut position happens to be between two bytes of multi-byte characters, then the cut is achieved starting from ... Read More

Urmila Samariya
170 Views
The mb_strripos() function in PHP is used to search the last existing of a string in another string. This function is not case-sensitive. It performs multi-byte safe strripos() operation based on the number of characters. It returns the specified needle position count from the starting of the haystack string.Syntaxinteger mb_strripos( ... Read More

Urmila Samariya
124 Views
The mb_strrichr() function in PHP is used to find the last occurrence of a character in a string within another string. This function is not case-sensitive like mb_strrchr(). This function finds the last occurrence of a needle in the given haystack string and returns that portion of the haystack. It ... Read More

Urmila Samariya
240 Views
The mb_eregi (multibyte regular expression ignore) function in PHP is used to ignore the regular expression match with multibyte support. This function performs the case-insensitive regular expression match with the multibyte support.Syntaxbool mb_eregi( $str_ pattern, $str_string, $arr_matches=null )For example(pattern = "or", ... Read More

Urmila Samariya
311 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

Urmila Samariya
159 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

Urmila Samariya
449 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

Urmila Samariya
143 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

Urmila Samariya
742 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

Urmila Samariya
391 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