“Ucfirst” Kod odpowiedzi

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

Odpowiedzi podobne do “Ucfirst”

Pytania podobne do “Ucfirst”

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu