PHP String 函数
ucfirst() 函数把字符串中的首字符转换为大写。
ucfirst(string)
<?php echo ucfirst("hello world"); ?>
输出:
Hello world
Search: