ucwords () 函数把字符串中每个单词的首字符转换为大写。
ucwords ( string $str ) : string
参数描述
str必需。规定要转换的字符串。
返回值:
返回把字符串中每个单词的首字符转换为大写。
实例:
echo ucwords("hello world!"); // Hello World!
2022-06-12 13:06:54
ucwords () 函数把字符串中每个单词的首字符转换为大写。
ucwords ( string $str ) : string
参数描述
str必需。规定要转换的字符串。
返回值:
返回把字符串中每个单词的首字符转换为大写。
实例:
echo ucwords("hello world!"); // Hello World!