PHP 中的 ctype_upper()函数

首页 / PHP入门教程 / PHP 中的 ctype_upper()函数

ctype_upper() - 语法

ctype_upper ( $text );

此函数检查提供的字符串text中的所有字符是否都是大写字符。

Sr.No Parameter & Description
1

text(必需)

匹配字符串。

ctype_upper() - 返回值

如果文本中的每个字符都是当前区域设置中的大写字母,则返回true。

无涯教程网

ctype_upper() - 示例

<?php
   $strings=array('test12345', 'ABCEFG');
   
   foreach ($strings as $test) {
      if (ctype_upper($test)) {
         echo "$test consists of all uppercase letters.\n";
      }else {
         echo "$test does not have all uppercase letters.\n";
      }
   }
?> 

这将产生以下输出-

test12345 does not have all uppercase letters.
ABCEFG consists of all uppercase letters.

祝学习愉快!(内容编辑有误?请选中要编辑内容 -> 右键 -> 修改 -> 提交!)

技术教程推荐

深入拆解Java虚拟机 -〔郑雨迪〕

软件工程之美 -〔宝玉〕

透视HTTP协议 -〔罗剑锋(Chrono)〕

DevOps实战笔记 -〔石雪峰〕

Service Mesh实战 -〔马若飞〕

手把手教你玩音乐 -〔邓柯〕

程序员的个人财富课 -〔王喆〕

手把手带你搭建秒杀系统 -〔佘志东〕

JavaScript进阶实战课 -〔石川〕

好记忆不如烂笔头。留下您的足迹吧 :)