“Konversi string ke huruf kecil di PHP” Kode Jawaban

Konversi string ke huruf kecil di PHP

/* strtolower() function converts  string to lowercase. */
<?php
echo strtolower("Hello WORLD 123");
?>
// Output:hello world 123
Batman

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

Konversi string ke huruf kecil di PHP

/* The strtolower() function converts a string to lowercase.
Convert all characters to lowercase.*/
<?php
echo strtolower("Hello WORLD.");
?>
// Output: hello world.
Ankur

Konversi string ke huruf kecil di PHP

/* There is a function in php wich convert all paragraph or 
string to lowercase*/
<?php
echo strtolower("Hey Samy, HAVE YOU CHECK THE LATEST MOVIE.");


// Output: hey samy, have you check the latest movie.
?>
Mr. Samy

Konversi string ke huruf kecil di PHP

echo strtolower('HELLO WORLD'); // hello world
CodePadding

Jawaban yang mirip dengan “Konversi string ke huruf kecil di PHP”

Pertanyaan yang mirip dengan “Konversi string ke huruf kecil di PHP”

Lebih banyak jawaban terkait untuk “Konversi string ke huruf kecil di PHP” di PHP

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya