“So konvertieren Sie das String -Wort in Kleinbuchstaben in PHP” Code-Antworten

Wie tdo Sie einen String -Kleinbuchstaben in PHP konvertieren

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

Tolower PHP

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

So konvertieren Sie das String -Wort in Kleinbuchstaben in 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

Ähnliche Antworten wie “So konvertieren Sie das String -Wort in Kleinbuchstaben in PHP”

Fragen ähnlich wie “So konvertieren Sie das String -Wort in Kleinbuchstaben in PHP”

Weitere verwandte Antworten zu “So konvertieren Sie das String -Wort in Kleinbuchstaben in PHP” auf PHP

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen