阅读量:0
在 PHP 中,可以使用 ucwords()
函数将字符串中每个单词的首字母转换为大写。这个函数与 cut()
函数一起使用可以实现大小写转换的需求。以下是一个示例:
<?php $str = "hello world! i am a php assistant."; $result = ucwords(strtolower(trim($str))); echo $result; // 输出: Hello World! I Am A Php Assistant. ?>
在这个示例中,我们首先使用 trim()
函数去除字符串首尾的空白字符,然后使用 strtolower()
函数将字符串转换为小写。最后,使用 ucwords()
函数将每个单词的首字母转换为大写。