“Ucfirst” Ответ

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

Ответы похожие на “Ucfirst”

Вопросы похожие на “Ucfirst”

Смотреть популярные ответы по языку

Смотреть другие языки программирования