Urmila Samariya has Published 135 Articles

PHP – Match regular expression using mb_ereg_match()

Urmila Samariya

Urmila Samariya

Updated on 11-Oct-2021 12:53:09

456 Views

In PHP, mb_ereg_match() function is used for matching a given string with a regular expression pattern. This function only matches the string from the beginning of the string and it is not necessary that it will match the string till the end. This function will return true or 1 if ... Read More

PHP – Get aliases of a known encoding type using mb_encoding_aliases()

Urmila Samariya

Urmila Samariya

Updated on 11-Oct-2021 12:49:47

190 Views

In PHP, mb_encoding_aliases() is used to get the aliases of a known encoding type. This function is supported in PHP 5 or higher version.Syntaxarray mb_encoding_aliases(str $encoding)ParametersIt accepts only one parameter, $encoding, which is the encoding type checked for aliases.Return ValuesIt returns a numerically indexed array of encoding aliases on success ... Read More

PHP – Encode string for MIME header using mb_encode_mimeheader()

Urmila Samariya

Urmila Samariya

Updated on 11-Oct-2021 12:43:16

562 Views

In PHP, mb_encode_mimeheader() function is used to encode a string for MIME (Multipurpose Internet Mail Extensions) header. It encodes a given string by the MIME header encoding scheme.Syntaxstring mb_encode_mimeheader(str $string, str $charset, str $transfer_encoding, str $newLine, int $indent)ParametersThe mb_encode_mimeheader() function accepts five parameters −$string − This parameter is used to ... Read More

PHP – How to detect character encoding using mb_detect_encoding()

Urmila Samariya

Urmila Samariya

Updated on 11-Oct-2021 12:19:32

7K+ Views

In PHP, mb_detect_encoding() is used to detect the character encoding. It can detect the character encoding for a string from an ordered list of candidates. This function is supported in PHP 4.0.6 or higher version.mb_detect_encoding() is useful with multibyte encoding, where not all sequences of bytes form a valid string. ... Read More

PHP – How to get the substitution character using mb_substitute_character()?

Urmila Samariya

Urmila Samariya

Updated on 23-Aug-2021 08:34:59

292 Views

In PHP, we can use the function mb_substitute_character() to get the substitution character. This function specifies the substitution character when the input character encoding is not valid or the character code does not exist in the output character encoding.Note: The invalid characters may be substituted with no output, string, or int ... Read More

PHP – Get the string length using mb_strlen()

Urmila Samariya

Urmila Samariya

Updated on 23-Aug-2021 08:34:29

2K+ Views

In PHP, multibyte string length (mb_strlen) function is used to get the total string length of a specified string. This function is supported in PHP 4.6.0 or higher versions.Syntaxint mb_strlen(str $string, str $encoding)Parametersmb_strlen() accepts two parameters: $string and $encoding.$string− It is used to check the string length$encoding− This parameter is ... Read More

PHP – How to set the character encoding detection order using mb_detect_order()?

Urmila Samariya

Urmila Samariya

Updated on 23-Aug-2021 08:33:52

233 Views

The mb_detect_order() function in PHP can be used to set/get the character encoding detection in an order. This function is supported in PHP 4.2.0 or higher versions.Syntaxarray|bool mb_detect_order(str $encoding)Parametersmb_detect_order() accepts only one parameter $encoding with string, array and bool.$encoding− This encoding parameter is an array or comma-separated list of character ... Read More

PHP – Make a lower case string using mb_strtolower()

Urmila Samariya

Urmila Samariya

Updated on 23-Aug-2021 08:33:23

530 Views

In PHP, we can use the function mb_strtolower() to change a given string into lower case. It returns strings with all alphabetic characters converted to lowercase characters.Syntaxstring mb_strtolower(str $string, str $encoding)Parametersmb_strtolower() accepts two parameters: $string and $encoding.$string− The string being lowercased, returns strings with all alphabetic characters converted to lowercase ... Read More

PHP – Make an upper case string using mb_strtoupper()

Urmila Samariya

Urmila Samariya

Updated on 23-Aug-2021 08:32:07

317 Views

In PHP, mb_strtoupper() is an inbuilt function that is used to change a given string to upper case.Syntaxstring mb_strtoupper(str $string, str $encoding)Parametersmb_strtoupper() accepts two parameters: $string and $encoding.$string− The string being uppercased.$encoding− This parameter is the character encoding. If it is absent or null, then the internal character encoding value ... Read More

PHP – How to count the number of substring using mb_substr_count()?

Urmila Samariya

Urmila Samariya

Updated on 23-Aug-2021 08:30:29

179 Views

In PHP, we can use the function mb_substr_count() to count the total number of substrings in a given string.Syntaxint mb_substr_count(str $haystack, str $needle, str $encoding)Parametersmb_substr_count() accepts three parameters: $haystack, $needle and $encoding.$haystack− This parameter will check the string.$needle− This parameter will be used to tell that the substring is found ... Read More

Previous 1 ... 3 4 5 6 7 ... 14 Next
Advertisements