💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、星火、月之暗面及文生图 广告
# PHP ucwords() 函数 ## 定义和用法 ucwords() 函数把字符串中每个单词的首字符转换为大写。 ### 语法 ``` ucwords(string) ``` | 参数 | 描述 | | --- | --- | | string | 必需。规定要转换的字符串。 | ## 例子 ``` <?php echo ucwords("hello world"); ?> ``` 输出: ``` Hello World ```