La mejor manera de convertir strings en mayúsculas a minúsculas en PHP es usando la función strtolower() . Toma la string como entrada y convierte todos sus caracteres a minúsculas y devuelve el valor de la string.
Sintaxis:
string strtolower( $string )
Valor devuelto: Devuelve la string convertida en string inferior.
Ejemplo 1:
PHP
<?php echo strtolower("GeeksForGeeks") ?>
Producción:
geeksforgeeks
Ejemplo 2:
PHP
<?php $str = "Geeks For Geeks"; $lowerStr = strtolower($str); echo $lowerStr ?>
Producción:
geeks for geeks
Ejemplo 3:
PHP
<?php $str = "HelLo GeeKs hAve A wonDERful DaY"; echo strtolower($str); ?>
Producción:
hello geeks have a wonderful day
Publicación traducida automáticamente
Artículo escrito por jimishravat2802 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA