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