Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> PHP

ฟังก์ชัน ctype_upper() ใน PHP


ฟังก์ชัน ctype_upper() ใน PHP ตรวจสอบอักขระตัวพิมพ์ใหญ่ คืนค่า TRUE หากทุกอักขระในข้อความเป็นตัวพิมพ์ใหญ่ในภาษาปัจจุบัน

ไวยากรณ์

ctype_upper(str)

พารามิเตอร์

  • str − สตริงที่ทดสอบ

คืนสินค้า

ฟังก์ชัน ctype_upper() จะคืนค่า TRUE หากทุกอักขระในข้อความเป็นตัวพิมพ์ใหญ่ในภาษาปัจจุบัน

ตัวอย่าง

ต่อไปนี้เป็นตัวอย่าง −

<?php
   $arr = array('9898jjhh', 'PQR', 'Amit');

   foreach ($arr as $demo) {
      if (ctype_upper($demo)) {
         echo "$demo has all uppercase letters. \n";
      } else {
         echo "$demo does not have all uppercase letters. \n";
      }
   }
?>

ผลลัพธ์

ต่อไปนี้เป็นผลลัพธ์ -

9898jjhh does not have all uppercase letters.
PQR has all uppercase letters.
Amit does not have all uppercase letters.

ตัวอย่าง

เรามาดูตัวอย่างกัน −

<?php
   $str = 'AUSTRALIA';

   if (ctype_upper($str)) {
      echo "Word has all uppercase characters!\n";
   } else {
      // if False then return No
      echo "Word does not have all uppercase characters!\n";
   }
?>

ผลลัพธ์

ต่อไปนี้เป็นผลลัพธ์ -

Word has all uppercase characters!