PHP | IntlChar getBlockCode()函数
IntlChar::getBlockCode()函数是PHP中的一个内置函数,用于获取包含代码点的 Unicode 分配块。此函数返回包含字符的 Unicode 分配块。
句法:
int IntlChar::getBlockCode ( $codepoint )
参数:此函数接受一个强制的参数$codepoint 。 $codepoint值是一个整数值或字符,它被编码为UTF-8字符串。
返回值:此函数返回$codepoint的块值。下面列出了代码点的一些块值:
- IntlChar::BLOCK_CODE_BASIC_LATIN
- IntlChar::BLOCK_CODE_GREEK
- IntlChar::BLOCK_CODE_MISCELLANEOUS_SYMBOLS
下面的程序说明了PHP中的IntlChar::getBlockCode()函数:
方案一:
PHP
PHP
输出:
bool(true)
bool(false)
bool(false)
bool(true)
bool(false)
方案二:
PHP
输出:
int(1)
NULL
int(1)
NULL
int(1)
int(1)
相关文章:
- PHP | IntlChar::iscntrl()函数
- PHP | IntlChar::totitle()函数
- PHP | IntlChar charType()函数
参考: http: PHP。 PHP