📜  php 大写每个单词 - PHP (1)

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

PHP 大写每个单词 - PHP

在 PHP 中,可以使用 ucwords() 函数将每个单词的首字母大写。该函数需要一个字符串作为参数,并返回该字符串的每个单词的首字母都大写的副本。

示例代码:

$str = "hello world";
$str = ucwords($str);
echo $str;  // 输出 "Hello World"

注意:该函数只会将每个单词的首字母大写,而不会将其他字母转换为大写。

如果您想将整个字符串都转换为大写,可以使用 strtoupper() 函数;如果您想将整个字符串都转换为小写,可以使用 strtolower() 函数。

示例代码:

$str = "hello world";
$str = strtoupper($str);
echo $str;  // 输出 "HELLO WORLD"

$str = "HELLO WORLD";
$str = strtolower($str);
echo $str;  // 输出 "hello world"

此外,还有一个相关的函数 ucfirst(),它可以将字符串的第一个字母大写。示例代码:

$str = "hello world";
$str = ucfirst($str);
echo $str;  // 输出 "Hello world"

以上就是 PHP 中将每个单词的首字母大写的方法了。这个功能的应用非常广泛,在很多 CMS、框架和其他 PHP 应用程序中都有使用。