Rumah > Artikel > pembangunan bahagian belakang > php ucwords函数怎么用
php ucwords函数用于把每个单词的首字符转换为大写,并返回已转换的字符串;语法为“ucwords(string)”,参数string用于指定要转换的字符串。
php ucwords
作用:把每个单词的首字符转换为大写
语法:
ucwords(string)
参数:
string 必须,规定要转换的字符串
说明:把字符串中每个单词的首字符转换为大写,该函数是二进制安全的。
php ucwords()函数使用示例1:
<?php $i = "hello world"; $j = ucwords($i); echo $j; ?>
输出:
Hello World
php ucwords()函数使用示例2:
<?php $i = "I'm study in php.cn"; $j = ucwords($i); echo $j; ?>
输出:
I'm Study In Php.cn
Atas ialah kandungan terperinci php ucwords函数怎么用. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!