La función IntlChar::islower() es una función incorporada en PHP que se usa para verificar si el carácter de entrada dado es un carácter en minúscula o no.
Sintaxis:
bool IntlChar::islower( $codepoint )
Parámetro: Esta función acepta un solo parámetro $codepoint que es obligatorio. El parámetro de entrada es un carácter, que está codificado como una string UTF-8.
Valor devuelto: si $codepoint es un carácter en minúsculas, devuelve True; de lo contrario, devuelve False.
Los siguientes programas ilustran la función IntlChar::islower() en PHP:
Programa 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")); ?>
Producción:
bool(true) bool(false) bool(false) bool(false) NULL NULL bool(false)
Nota: Si se utilizan strings y números (excepto números de un solo dígito) como parámetro, devuelve NULL.
Programa 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)); } ?>
Producción:
bool(true) bool(true) bool(false) bool(false) bool(false) bool(false) NULL NULL
Artículos relacionados:
- PHP | Función IntlChar::isupper()
- PHP | Función IntlChar::isdigit()
- PHP | IntlChar::isalnum() Función
- PHP | Función IntlChar::isalpha()
Referencia: http://php.net/manual/en/intlchar.islower.php
Publicación traducida automáticamente
Artículo escrito por Mithun Kumar y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA