?? [f?:rst]

n.? ??, ? ?? ???, [??] ?? ??

adv. . ??, ??, ??, ??

num.First

???

PHP ucfirst() ?? ???

??: ???? ? ??? ???? ??

??: ??ucfirst(string)

????:

ParametersDescription
string??, ??? ?????. ??? ???

??: ???? ? ?? ??? ???? ?????.

PHP ucfirst() ?? ?

<?php
$i = "hello world";
$j = ucfirst($i);
echo $j;
?>

???? ???

??? ????? ??? "???? ??" ??? ?????

??:

Hello world


<?php
echo ucfirst("hi php.cn");
?>

???? ???

??' ??? ??? ? ??

??:

Hi php.cn