PHP 中的 ctype_upper()函数

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

ctype_upper() - 语法

ctype_upper ( $text );

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

Sr.No Parameter & Description
1

text(必需)

匹配字符串。

ctype_upper() - 返回值

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

链接:https://www.learnfk.comhttps://www.learnfk.com/php/php-function-ctype-upper.html

来源:LearnFk无涯教程网

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.

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

技术教程推荐

深入浅出gRPC -〔李林锋〕

算法面试通关40讲 -〔覃超〕

Node.js开发实战 -〔杨浩〕

安全攻防技能30讲 -〔何为舟〕

架构实战案例解析 -〔王庆友〕

手把手带你写一个Web框架 -〔叶剑峰〕

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

业务开发算法50讲 -〔黄清昊〕

JavaScript进阶实战课 -〔石川〕

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