PHP | IntlChar::islower() Function Last Updated : 11 Jul, 2025 Summarize Comments Improve Suggest changes Share Like Article Like Report The IntlChar::islower() function is an inbuilt function in PHP which is used to check whether the given input character is a lowercase character or not. Syntax: bool IntlChar::islower( $codepoint ) Parameter: This function accepts a single parameter $codepoint which is mandatory. The input parameter is a character, which is encoded as a UTF-8 string. Return Value: If $codepoint is a lowercase character then it returns True, otherwise return False. Below programs illustrate the IntlChar::islower() function in PHP: Program 1: PHP <?php // PHP code to illustrate IntlChar::islower() // function // Input data is character type var_dump(IntlChar::islower("a")); var_dump(IntlChar::islower("A")); var_dump(IntlChar::islower("\u{0041}")); // Input data is control character var_dump(IntlChar::islower("\t")); // Input data is string type var_dump(IntlChar::islower("Geeksforgeeks")); // Input data is number type var_dump(IntlChar::islower("2018")); // Input data is single digit var_dump(IntlChar::islower("5")); ?> Output: bool(true) bool(false) bool(false) bool(false) NULL NULL bool(false) Note: If String and Numbers (except single digit number) are used as a parameter then it returns NULL. Program 2: PHP <?php // PHP code to illustrate IntlChar::islower() // Declare an array $arr $arr = array("a", "\u{FF41}", "A", "\u{0041}", "0", "\n", "123", "Geeks"); // \u{0041} is ASCII value of 'A' // \u{FF41} is ASCII value of 'a' // Loop run for every array element foreach ($arr as $val){ // Check each element as code point data var_dump(IntlChar::islower($val)); } ?> Output: bool(true) bool(true) bool(false) bool(false) bool(false) bool(false) NULL NULL Related Articles: PHP | IntlChar::isupper() FunctionPHP | IntlChar::isdigit() FunctionPHP | IntlChar::isalnum () FunctionPHP | IntlChar::isalpha() Function Reference: https://www.php.net/manual/en/intlchar.islower.php Comment More infoAdvertise with us Next Article PHP | IntlChar::isULowercase() Function M Mithun Kumar Follow Improve Article Tags : Misc Web Technologies PHP PHP-function PHP-Intl +1 More Practice Tags : Misc Similar Reads PHP | IntlChar::isULowercase() Function The IntlChar::isULowercase() function is an inbuilt function in PHP that is used to check whether the given input character is a Lowercase character or not. Syntax: bool IntlChar::isULowercase( $codepoint ) Parameters: This function accepts a single parameter $codepoint which is mandatory. The input 3 min read PHP | IntlChar istitle() Function The IntlChar::istitle function is an inbuilt function in PHP which is used to check whether the input character code point is a titlecase letter or not. In True cases, the characters with the general category are "Lt" (titlecase letter).Syntax: bool IntlChar::istitle( $codepoint ) Parameters: This f 2 min read PHP | IntlChar::isupper() Function The IntlChar::isupper() function is an inbuilt function in PHP which is used to check whether the given input character is an uppercase character or not. Syntax: bool IntlChar::isupper( $codepoint ) Parameters: This function accepts a single parameter $codepoint which is mandatory. The input paramet 2 min read PHP IntlChar::ord() Function The IntlChar::ord() function is an inbuilt function in PHP which is used to return the Unicode code point value of the given character. Syntax: int IntlChar::ord( $character ) Parameters: This function accepts a single parameter $character which is mandatory. This parameter is a Unicode character. R 2 min read PHP IntlChar::isbase() Function PHP IntlChar::isbase() function is an inbuilt function in PHP that is used to check whether the given input data is a base character or not. If the specified code point is a base character then it returns TRUE for general categories "L" (Letters), "N" (numbers), "Mc" (spacing combining marks), and " 2 min read PHP | IntlChar::isalnum () Function The IntlChar::isalnum() function is an inbuilt function in PHP which is used to check the given input is an alphanumeric character (Digit or Letter) or not. It returns TRUE for characters with general categories "L" (letters) and "Nd" (decimal digit numbers). Syntax: bool IntlChar::isalnum( $codepoi 2 min read Like