“ucfirst” Kode Jawaban

ucfirst () php


<?php
$foo = 'hello world!';
$foo = ucfirst($foo);             // Hello world!

$bar = 'HELLO WORLD!';
$bar = ucfirst($bar);             // HELLO WORLD!
$bar = ucfirst(strtolower($bar)); // Hello world!
?>
// string manipulation function 
Ramsey1120

ucfirst

<?php
/* Convert the first character of "hello" to uppercase:  */
echo ucfirst("hello samy!");

//output : Hello samy!
?>
Mr. Samy

Jawaban yang mirip dengan “ucfirst”

Pertanyaan yang mirip dengan “ucfirst”

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya