📜  php ucwords - PHP (1)

📅  最后修改于: 2023-12-03 15:33:31.502000             🧑  作者: Mango

PHP函数: ucwords()

什么是ucwords()函数

ucwords() 函数用于将指定字符串中每个单词的首字母转换为大写字母。

语法
ucwords(string)
参数

参数 | 描述 ----|----- string | 必需。规定要转换的字符串。

返回值

返回转换后的字符串。

实例
$input = "hello world! How are you?";
echo ucwords($input);

输出结果:Hello World! How Are You?

Markdown 代码片段
# PHP函数: ucwords()

## 什么是ucwords()函数

ucwords() 函数用于将指定字符串中每个单词的首字母转换为大写字母。

## 语法

```php
ucwords(string)
参数

参数 | 描述 ----|----- string | 必需。规定要转换的字符串。

返回值

返回转换后的字符串。

实例
$input = "hello world! How are you?";
echo ucwords($input);

输出结果:Hello World! How Are You?