strtoupper()函数用于将字符串转化为大写。
string strtoupper ( string $string )
将 string 中所有的字母字符转换为大写并返回。
相关函数:
strtolower() - 把字符串转换为小写
lcfirst() - 把字符串中的首字符转换为小写
ucfirst() - 把字符串中的首字符转换为大写
ucwords() - 把字符串中每个单词的首字符转换为大写
返回字符串的大写。
序号 | 参数与说明 |
---|---|
1 | string 输入的字符串 |
试试下面的实例,将所有字符串转为大写:
<?php //strtoupper() 函数,将所有字符串转为大写: echo strtoupper("www.cainiaojc.com"); ?>测试看看‹/›
输出结果
www.cainiaojc.com