PHP | IntlChar isgraph()函数
IntlChar::isgraph()函数是PHP中的一个内置函数,用于检查代码点是否为图形字符。它为所有字符返回 True,除了具有常规类别 Cc(控制代码)、Cf(格式控制)、Cs(代理)、Cn(未分配)和 Z(分隔符)的字符。
句法:
bool IntlChar::isgraph ( $codepoint )
参数:此函数接受一个强制的参数$codepoint 。 $codepoint值是一个整数值或字符,它被编码为 UTF-8字符串。
返回值:如果$codepoint是图形字符,此函数返回 True,否则返回 False。
下面的程序说明了PHP中的IntlChar::isgraph()函数:
方案一:
输出:
bool(true)
bool(true)
bool(true)
bool(false)
bool(false)
方案二:
输出:
bool(true)
NULL
bool(true)
NULL
bool(true)
NULL
相关文章:
- PHP | IntlChar::iscntrl()函数
- PHP | IntlChar::isdigit()函数
参考: http: PHP。 PHP