Article Categories
- All Categories
-
Data Structure
-
Networking
-
RDBMS
-
Operating System
-
Java
-
MS Excel
-
iOS
-
HTML
-
CSS
-
Android
-
Python
-
C Programming
-
C++
-
C#
-
MongoDB
-
MySQL
-
Javascript
-
PHP
Selected Reading
IntlChar::islower() function in PHP
The IntlChar::islower() function check whether the given input character is a lowercase character or not.
Syntax
bool IntlChar::islower(val)
Parameters
val − A character encoded as a UTF-8 string.
Return
The IntlChar::islower() function returns TRUE if the entered value is a lowercase character.
Example
The following is an example −
";
var_dump(IntlChar::islower("A"));
?>
Output
The following is the output −
bool(true) bool(false)
Advertisements
