<?php $str='PHP is a very good programming language.'; //定义一个字符串 echo "未经处理的字符串:<br />{$str}"; //分别使用各个函数处理字符串并输出处理后的结果 $str=strtolower($str); echo "<br />使用strtolower函数将字符串转换为小写:<br />{$str}"; $str=ucfirst($str); echo "<br />使用ucfirst函数将字符串首字母转换为大写:<br />{$str}"; $str=ucwords($str); echo "<br />使用ucwords函数将字符串每个单词的首字母转换为大写:<br />{$str}"; $str=strtoupper($str); echo "<br />使用strtoupper函数将字符串转换为大写:<br />{$str}"; ?>