ucwords()
是 PHP 中的一个内置函数,用于将字符串中每个单词的首字母转换为大写。要使 ucwords()
生效,只需将其应用于您想要修改的字符串即可。以下是一个简单的示例:
<?php
$input = "hello world, this is a test.";
$output = ucwords($input);
echo $output; // 输出: Hello World, This Is A Test.
?>
在这个例子中,我们将 $input
字符串传递给 ucwords()
函数,并将结果存储在 $output
变量中。然后我们输出 $output
,可以看到每个单词的首字母都已转换为大写。
请注意,ucwords()
函数不会改变其他字母的大小写。例如,它不会将 “tHis” 转换为 “This”。如果您需要进一步处理字符串,可以考虑使用其他字符串函数,如 strtolower()
或 strtoupper()
。