La función ctype_lower() es una función incorporada en PHP que se usa para verificar si los caracteres dados en la string están en minúsculas o no.
Sintaxis:
bool ctype_lower( string $text )
Parámetros: esta función acepta un solo parámetro $texto que contiene la string que debe probarse.
Valor devuelto: esta función devuelve VERDADERO si todos los caracteres de una string son minúsculas en la configuración regional actual.
Los siguientes programas ilustran la función ctype_lower() en PHP:
Programa 1:
<?php // PHP program to check the string contains // all lower case characters or not $strings = array('gfg123', 'geeksforgeeks', 'GfG'); // Loop to check the above three strings foreach ($strings as $testcase) { if (ctype_lower($testcase)) { echo "Yes\n"; } else { echo "No\n"; } } ?>
Producción:
No Yes No
Programa 2:
<?php // Declare a string $str = "GeeksforGeeks"; $n = strlen($str); $count = 0; for($i = 0; $i < $n; $i++) { if(ctype_lower($str[$i])) { $count++; } } echo "Totla number of lower case " . "character in string: " . $count; ?>
Producción:
Totla number of lower case character in string: 11
Referencia: https://www.php.net/manual/en/function.ctype-lower.php
Publicación traducida automáticamente
Artículo escrito por AshokJaiswal y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA