English [w?:dz] US [w?:dz]

n.??(??? ????) ?? ??;

PHP ucwords() ?? ???

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

??: ucwords(string)

????:

ParametersDescription
string Must, ?? ??? ???

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

PHP ucwords() ?? ?

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

???? ???

??? ????? ??? "???? ??" ??? ?????.

??:

Hello World
<?php
$i = "I'm study in php.cn";
$j = ucwords($i);
echo $j;
?>

???? ???

"? ?????. ???? ??" ??? ????? ??? ??? ????.

??:

I'm Study In Php.cn