PHP | IntlChar foldCase() Function Last Updated : 25 Mar, 2021 Summarize Comments Improve Suggest changes Share Like Article Like Report The IntlChar::foldCase() function is an inbuilt function in PHP which is used to perform case folding on a code point. Case folding means the given character is mapped to its equivalent lowercase characters.Syntax: mixed IntlChar::foldCase( $codepoint, $options = IntlChar::FOLD_CASE_DEFAULT ) Parameters: This function accepts two parameters as mentioned above and described below: $codepoint: This parameter is a character or integer value, which is encoded as a UTF-8 string.$options: This parameter holds the character constants IntlChar::FOLD_CASE_DEFAULT by default or IntlChar::FOLD_CASE_EXCLUDE_SPECIAL_I. Return Value: This function returns Simple_Case_Folding of the codepoint. If the codepoint has no case folding equivalent, then the codepoint itself is returned.Below program illustrates the IntlChar::foldCase() function in PHP:Program: php <?php // PHP program to illustrate the IntlChar::foldCase() function var_dump(IntlChar::foldCase('AA', IntlChar::FOLD_CASE_EXCLUDE_SPECIAL_I)); var_dump(IntlChar::foldCase('@', IntlChar::FOLD_CASE_EXCLUDE_SPECIAL_I)); var_dump(IntlChar::foldCase('&', IntlChar::FOLD_CASE_EXCLUDE_SPECIAL_I)); var_dump(IntlChar::foldCase('C', IntlChar::FOLD_CASE_DEFAULT)); var_dump(IntlChar::foldCase('Lt', IntlChar::FOLD_CASE_DEFAULT)); var_dump(IntlChar::foldCase('/', IntlChar::FOLD_CASE_DEFAULT)); var_dump(IntlChar::foldCase('g', IntlChar::FOLD_CASE_DEFAULT)); var_dump(IntlChar::foldCase('1', IntlChar::FOLD_CASE_DEFAULT)); ?> Output: NULL string(1) "@" string(1) "&" string(1) "c" NULL string(1) "/" string(1) "g" string(1) "1" Reference: https://www.php.net/manual/en/intlchar.foldcase.php Comment More infoAdvertise with us Next Article PHP | IntlChar foldCase() Function V VigneshKannan3 Follow Improve Article Tags : Web Technologies PHP PHP-function PHP-Intl Similar Reads PHP | IntlChar::charAge() Function The IntlChar::charAge() function is an inbuilt function in PHP which is used to calculate the age of code point. Where the age is Unicode version when the code point was first designated or assigned a character. This can be useful to avoid emitting code points to receiving processes that do not acce 2 min read PHP | IntlChar::chr() Function The IntlChar::chr() function is an inbuilt function in PHP which is used to check whether the given input character is Unicode code point value or not. It returns Unicode character by code point value.Syntax: string IntlChar::chr( $codepoint ) Parameters: This function accepts a single parameter $co 2 min read PHP | IntlChar::forDigit() Function The IntlChar::forDigit() function is an inbuilt function in PHP which is used to determines the character representation for a specific digit in the specified radix. Syntax: int IntlChar::forDigit( $digit, $radix ) Parameters: This function accepts two parameters as mentioned above and described bel 2 min read PHP IntlChar::charName() Function PHP IntlChar::charName() function is an inbuilt function in PHP used to retrieve the name of a Unicode character. Syntax: string IntlChar::charName( $codepoint [, $nameChoice = IntlChar::UNICODE_CHAR_NAME] ) Parameters: This function accepts two parameters as mentioned above and described below: $co 2 min read PHP | IntlChar digit() function The IntlChar::digit() function is an inbuilt function in PHP which is used to get the decimal digit value of a code point for a given radix. This function returns the decimal digit value of the code point in the specified radix. Syntax: int IntlChar::digit( $codepoint, $radix ) Parameters: This func 2 min read Like