📜  PHP | ctype_upper()函数

📅  最后修改于: 2022-05-13 01:56:54.799000             🧑  作者: Mango

PHP | ctype_upper()函数

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


输出:
Yes

程序:2将字符串数组作为文本传递并打印单个值的结果。


输出:
Yes
No
No
Yes

程序: 3驱动代码ctype_upper()函数,其中输入将是空格、特殊符号,返回 False。


输出:
No

参考: 函数 : PHP 。 PHP