“cara mengubah kata string ke huruf kecil di php” Kode Jawaban

Bagaimana Anda mengkonversi huruf kecil di PHP

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

cara mengubah kata string ke huruf kecil di 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

Jawaban yang mirip dengan “cara mengubah kata string ke huruf kecil di php”

Pertanyaan yang mirip dengan “cara mengubah kata string ke huruf kecil di php”

Lebih banyak jawaban terkait untuk “cara mengubah kata string ke huruf kecil di php” di PHP

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya