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

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


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

ไวยากรณ์

ctype_lower(str)

พารามิเตอร์

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

คืนสินค้า

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

ตัวอย่าง

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

<?php
$arr = array('Tim879', 'tom');

   foreach ($arr as $x) {
      if (ctype_lower($x)) {
         echo "$x consists of all lowercase letters. \n";
      }else {
         echo "$x does not have all lowercase letters. \n";
      }
   }
?>

ผลลัพธ์

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

Tim879 does not have all lowercase letters.
tom consists of all lowercase letters.