ucwords()
是 PHP 中的一个内置函数,用于将字符串中每个单词的首字母转换为大写。这个函数非常有用,当你需要将用户输入的文本转换为标题格式时。
以下是 ucwords()
函数的使用示例:
<?php
// 原始字符串
$input = "hello world! this is a test.";
// 使用 ucwords() 函数
$output = ucwords($input);
// 输出结果
echo $output; // 输出: Hello World! This Is A Test.
?>
在这个示例中,我们首先定义了一个包含小写字母的字符串 $input
。然后,我们使用 ucwords()
函数处理这个字符串,并将结果存储在 $output
变量中。最后,我们输出 $output
,可以看到每个单词的首字母都被转换为大写了。