PHP中的ctype_upper()函数用于检查给定字符串的每个字符是否大写。如果字符串大写,则返回TRUE,否则返回False。
用法:
ctype_upper (string text)
使用的参数:-
- $text :测试的字符串。
返回值:
如果文本的每个字符均大写,则函数返回True;如果文本不是大写,则返回False。
例子:
Input : GEEKSFORGEEKS Output : Yes Explanation: All characters of "GEEKSFORGEEKS" in UPPERCASE. Input : GFG2018 Output : No Explanation : In text "GFG2018", '2', '0', '1', '8' are not in UPPERCASE. Input : GFG INDIA Output : No Explanation : In String "GFG INDIA" a special character [space] between GFG and INDIA. so answer will be No.
Note: Except string, if we input anything then it will return FALSE.
以下示例程序旨在说明PHP中的ctype_upper()函数:
程序:1
<?php
// PHP program to check given string is
// all characters -Uppercase characters
$string1 = 'GEEKSFORGEEKS';
if (ctype_upper($string1)) {
// if true then return Yes
echo "Yes\n";
} else {
// if False then return No
echo "No\n";
}
?>
输出:
Yes
程序:2将字符串数组作为文本传递,并打印单个值的结果。
<?php
// PHP program to check given string is
// all characters -Uppercase characters
$strings = array('GEEKSFORGEEKS', 'First',
'PROGRAMAT2018', 'ARTICLE');
// Checking above given four strings
//by used of ctype_upper() function .
foreach ($strings as $test) {
if (ctype_upper($test)) {
// if true then return Yes
echo "Yes\n";
} else {
// if False then return No
echo "No\n";
}
}
?>
输出:
Yes No No Yes
程序:3驱动代码ctype_upper()函数,其中输入为空格,特殊符号,返回False。
<?php
// PHP program to check given string is
// all characters -Uppercase characters
$strings = array('GEEK @ . com');
// Checking above given four strings
//by used of ctype_upper() function .
foreach ($strings as $test) {
if (ctype_upper($test)) {
// if true then return Yes
echo "Yes\n";
} else {
// if False then return No
echo "No\n";
}
}
?>
输出:
No
参考:http://php.net/manual/zh/function.ctype-upper.php
相关用法
- p5.js day()用法及代码示例
- PHP dir()用法及代码示例
- PHP each()用法及代码示例
- PHP each()用法及代码示例
- p5.js second()用法及代码示例
- p5.js int()用法及代码示例
- d3.js d3.max()用法及代码示例
- PHP Ds\Map put()用法及代码示例
- p5.js str()用法及代码示例
- p5.js arc()用法及代码示例
- d3.js d3.hcl()用法及代码示例
- d3.js d3.lab()用法及代码示例
注:本文由纯净天空筛选整理自jit_t大神的英文原创作品 PHP | ctype_upper() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。