📜  PHP | IntlChar isdefined()函数

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

PHP | IntlChar isdefined()函数

IntlChar::isdefined()函数是PHP中的一个内置函数,用于检查代码点是否已定义。如果给它分配了一个字符,就说这个字符是确定的。对于 Cn 以外的一般类别(其他,未指定),它是 True。

句法:

bool IntlChar::isdefined ( $codepoint )

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

返回值:如果$codepoint是一个已定义的字符,此函数返回 True,否则返回 False。

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

方案一:


输出:
bool(true)
bool(true)
bool(false)
NULL
bool(true)

方案二:


输出:
bool(true)
NULL
bool(true)
NULL
bool(true)
bool(true)
NULL
bool(true)

相关文章:

  • PHP | IntlChar::charName()函数
  • PHP | IntlChar::isupper()函数

参考: http: PHP。 PHP