PHP ucfirst() 函数
PHP ucfirst() 函数
定义和用法
ucfirst() 函数把字符串中的首字符转换为大写。
相关函数:
- lcfirst() - 把字符串中的首字符转换为小写
- ucwords() - 把字符串中每个单词的首字符转换为大写
- strtoupper() - 把字符串转换为大写
- strtolower() - 把字符串转换为小写
语法
ucfirst(string)
参数 | 描述 |
---|---|
string | 必需。规定要转换的字符串。 |
技术细节
返回值: | 返回已转换的字符串。 |
---|---|
PHP 版本: | 4+ |
PHP String 参考手册
相关文章
- PHP 变量
- PHP echo 和 print 语句
- PHP 常量
- PHP For 循环
- PHP $_GET 变量
- PHP Session
- PHP JSON
- PHP array_column() 函数
- PHP array_count_values() 函数
- PHP array_diff() 函数
- PHP array_filter() 函数
- PHP array_intersect_uassoc() 函数
- PHP array_map() 函数
- PHP array_replace_recursive() 函数
- PHP array_shift() 函数
- PHP array_udiff() 函数
- PHP array_walk() 函数
- PHP extract() 函数
- PHP prev() 函数
- PHP shuffle() 函数