PHP ucwords() 函数
PHP ucwords() 函数
定义和用法
ucwords() 函数把字符串中每个单词的首字符转换为大写。
注释:该函数是二进制安全的。
相关函数:
- ucfirst() - 把字符串中的首字符转换为大写
- lcfirst() - 把字符串中的首字符转换为小写
- strtoupper() - 把字符串转换为大写
- strtolower() - 把字符串转换为小写
语法
ucwords(string)
参数 | 描述 |
---|---|
string | 必需。规定要转换的字符串。 |
技术细节
返回值: | 返回已转换的字符串。 |
---|---|
PHP 版本: | 4+ |
PHP String 参考手册
相关文章
- PHP 变量
- PHP echo 和 print 语句
- PHP EOF(heredoc) 使用说明
- PHP 数据类型
- PHP If Else 语句
- PHP 文件处理
- PHP 文件上传
- PHP array_column() 函数
- PHP array_combine() 函数
- PHP array_merge_recursive() 函数
- PHP array_push() 函数
- PHP array_reduce() 函数
- PHP array_slice() 函数
- PHP array_sum() 函数
- PHP array_uintersect_uassoc() 函数
- PHP arsort() 函数
- PHP asort() 函数
- PHP extract() 函数
- PHP sizeof() 函数
- PHP 5 Date/Time 函数