PHP ucwords() 函数
定义和用法
ucwords() 函数把字符串中每个单词的首字符转换为大写。
语法
ucwords(string)
参数 | 描述 |
---|---|
string | 必需。规定要转换的字符串。 |
例子
<?php echo ucwords("hello world"); ?>
输出:
Hello World
ucwords() 函数把字符串中每个单词的首字符转换为大写。
ucwords(string)
参数 | 描述 |
---|---|
string | 必需。规定要转换的字符串。 |
<?php echo ucwords("hello world"); ?>
输出:
Hello World