“ucfirst” Réponses codées

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

Réponses similaires à “ucfirst”

Questions similaires à “ucfirst”

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code