该ucwords()
函数用于将字符串的第一个字符转换为每个字符串中的大写字母。
ucwords(str)
str-指定的字符串
该ucfirst()
函数返回转换后的字符串。
以下是一个例子-
<?php echo ucwords("就是这个!"); ?>
输出结果
以下是输出-
就是这个!
让我们看另一个例子-
<?php $s = "#demo#text"; $sep = '$'; $res = ucwords($s, $sep); print_r($res); ?>
输出结果
以下是输出-
#demo#text