“Como converter a String Word em minúsculas em php” Respostas de código

Como você converte uma string para minúsculas em php

strtolower ( string $string ) : string 
//Returns string with all alphabetic characters converted to lowercase.
$string = 'HELLO WORLD';
echo strtolower($string); //Output: 'hello world'
GelatinousMustard

PHP toler

The strtolower() function is used to convert a string into lowercase. This function takes a string as parameter and converts all the uppercase english alphabets present in the string to lowercase.
Smoggy Shrew

Como converter a String Word em minúsculas em php

strtolower ( string $string ) : string 
//Returns string with all alphabetic characters converted to lowercase.
$string = 'HELLO WORLD';
echo strtolower($string); //Output: 'hello world'
The strtolower() function is used to convert a string into lowercase. This function takes a string as parameter and converts all the uppercase english alphabets present in the string to lowercase.
Dead Dove

Respostas semelhantes a “Como converter a String Word em minúsculas em php”

Perguntas semelhantes a “Como converter a String Word em minúsculas em php”

Mais respostas relacionadas para “Como converter a String Word em minúsculas em php” em PHP

Procure respostas de código populares por idioma

Procurar outros idiomas de código