📜  PHP | IntlChar::isUAlphabetic()函数

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

PHP | IntlChar::isUAlphabetic()函数

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

句法:

bool IntlChar::isUAlphabetic( $codepoint )

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

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

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

方案一:

PHP


PHP


输出:

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

方案二:

PHP


输出:

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

相关文章:

  • PHP | IntlChar::isUUppercase()函数
  • PHP | IntlChar::charDigitValue()函数
  • PHP | IntlChar::isspace()函数
  • PHP | IntlChar::isWhitespace()函数

参考: http: PHP。 PHP