请老师检查
来源:1-10 编程练习
诗曦
2019-04-30 16:27:30
<?php
header("content-type:text/html;charset=utf-8");
$num = "i want to fly,Fly in the sky ,fly to the Higher!";
echo "全部转换为大写(strtoupper函数)",strtoupper($num),"<br/>","<br/>";
echo "全部转换为小写(strtolower函数)",strtolower($num),"<br/>","<br/>";
echo "整句的首字母大写",ucfirst($num),"<br/>","<br/>";
echo "每个单词首字母大写",ucwords($num),"<br/>","<br/>";
1回答
好帮手慕查理
2019-04-30
正确哦~棒棒哒!继续加油!