每个单词的首字母转换为大写:ucwords()
1 2 3 4 5 6 7 8 |
|
第一个单词首字母变大写:ucfirst()
1 2 3 4 5 6 7 8 |
|
第一个单词首字母变小写:lcfirst()
1 2 3 4 5 6 7 8 |
|
所有 字母变大写:strtoupper()
所有 字母变小写:strtolower()
每个单词的首字母转换为大写:ucwords()
1 2 3 4 5 6 7 8 |
|
第一个单词首字母变大写:ucfirst()
1 2 3 4 5 6 7 8 |
|
第一个单词首字母变小写:lcfirst()
1 2 3 4 5 6 7 8 |
|
所有 字母变大写:strtoupper()
所有 字母变小写:strtolower()