php 字符串大小写转换 ucwords(string) //每个单词首字母大写ucfirst(string) //字符串第一个字母大写strtolower(string) //字符串转换成小写strtoupper(string) //字符串转换成大写