strtoupper()函数用于将字符串转换为大写。此函数将字符串作为参数,并将字符串中存在的所有小写英文字母转换为大写。字符串中的所有其他数字字符或特殊字符保持不变。
用法:
string strtoupper ( $string )
参数:此函数的唯一参数是要转换为大写字母的字符串。
返回值:此函数返回一个字符串,其中所有字母均为大写。
例子:
Input : $str = "GeeksForGeeks" strtoupper($str) Output: GEEKSFORGEEKS Input : $str = "going BACK he SAW THIS 123$#%" strtoupper($str) Output: GOING BACK HE SAW THIS 123$#%
以下示例程序旨在说明PHP中的strtoupper()函数:
程序1
<?php
// original string
$str = "GeeksForGeeks";
// string converted to upper case
$resStr = strtoupper($str);
print_r($resStr);
?>
输出:
GEEKSFORGEEKS
程序2
<?php
// original string
$str = "going BACK he SAW THIS 123$#%";
// string to upper case
$resStr = strtoupper($str);
print_r($resStr);
?>
输出:
GOING BACK HE SAW THIS 123$#%
参考:
http://php.net/manual/en/function.strtoupper.php
相关用法
- p5.js sin()用法及代码示例
- d3.js d3.hsl()用法及代码示例
- p5.js tan()用法及代码示例
- d3.js d3.map.set()用法及代码示例
- p5.js cos()用法及代码示例
- PHP tan( )用法及代码示例
- PHP pos()用法及代码示例
- PHP key()用法及代码示例
- CSS hsl()用法及代码示例
- PHP each()用法及代码示例
- p5.js second()用法及代码示例
- p5.js day()用法及代码示例
注:本文由纯净天空筛选整理自HGaur大神的英文原创作品 PHP | strtoupper() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。