在 PHP 中,ucwords() 函數用于將字符串中每個單詞的首字母轉換為大寫。要高效使用 ucwords() 函數,可以按照以下幾個步驟進行操作:
$string = "hello world";
$ucwordsString = ucwords($string);
echo $ucwordsString;
$string = "hello world";
$lowerString = strtolower($string);
$ucwordsString = ucwords($lowerString);
echo $ucwordsString;
function capitalizeWords($string) {
return ucwords(strtolower($string));
}
$string1 = "hello world";
$string2 = "how are you";
echo capitalizeWords($string1);
echo capitalizeWords($string2);
通過以上步驟,您可以高效地使用 ucwords() 函數將字符串中每個單詞的首字母轉換為大寫。