ucwords() 函数把字符串中每个单词的首字符转换为大写。
ucwords(string)
<?php echo ucwords("hello world"); ?>
输出:
Hello World