把 "hello" 的首字符转换为大写:
<?phpecho ucfirst("hello world!");?>
ucfirst() 函数把字符串中的首字符转换为大写。
相关函数:
ucfirst(string)