Mục lục
Togglectype_upper ( string $text ) : bool
<?php $strings = array('AKLWC139', 'LMNSDO', 'akwSKWsm'); foreach ($strings as $testcase) { if (ctype_upper($testcase)) { echo "The string $testcase consists of all uppercase letters.\n"; } else { echo "The string $testcase does not consist of all uppercase letters.\n"; } } ?>
The string AKLWC139 does not consist of all uppercase letters. The string LMNSDO consists of all uppercase letters. The string akwSKWsm does not consist of all uppercase letters.
if (strtolower($string) != $string) { echo "uppercase letters found in $string"; }Nếu trong trường hợp, hàm ctype_upper() không được hỗ trợ trên Server của bạn, hãy có thể sử dụng strtolower() so sánh với chuỗi gốc, nếu chuỗi mới và chuỗi gốc giống nhau, như vậy là toàn bộ ký tự trong chuỗi đều là kiểu upper.
Bình luận: