Computer >> 컴퓨터 >  >> 프로그램 작성 >> PHP

PHP의 ctype_lower() 함수

<시간/>

ctype_lower() 함수는 소문자를 확인합니다. 현재 로케일에서 텍스트의 모든 문자가 소문자이면 TRUE를 반환합니다.

구문

ctype_lower(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.