📜  PHP | IntlChar::isUUppercase()函数

📅  最后修改于: 2022-05-13 01:56:26.095000             🧑  作者: Mango

PHP | IntlChar::isUUppercase()函数

IntlChar::isUUppercase()函数是PHP中的一个内置函数,用于检查给定的输入字符是否为大写 Unicode字符。

句法:

bool IntlChar::isUUppercase( $codepoint )

参数:此函数接受一个强制的参数$codepoint 。输入参数是一个字符值,编码为UTF-8字符串。

返回值:如果$codepoint是大写 Unicode字符,则返回 True,否则返回 False。

注意:该函数不同于 IntlChar::isupper()函数。

下面的程序说明了PHP中的IntlChar::isUUpper()函数:

方案一:

PHP


PHP


输出:

bool(true) 
bool(false) 
NULL 
NULL 
bool(false) 

方案二:

PHP


输出:

bool(true) 
NULL 
bool(false) 
bool(false) 
bool(false)  

相关文章:

  • PHP | IntlChar::isupper()函数
  • PHP | IntlChar::isxdigit()函数
  • PHP | IntlChar::islower()函数

参考: http: PHP