PHP | IntlChar::isprint()函数
IntlChar::isprint()函数是PHP中的一个内置函数,用于检查给定的输入字符是否为可打印字符。
句法:
bool IntlChar::isprint( $codepoint )
参数:此函数接受一个强制的参数$codepoint 。输入参数是一个整数值或字符,它被编码为 UTF-8字符串。
返回值:如果$codepoint是可打印字符,则返回 True,否则返回 False。
下面的程序说明了PHP中的IntlChar::isprint()函数:
方案一:
PHP
PHP
输出:
bool(true)
bool(true)
bool(false)
NULL
NULL
bool(true)
注意:如果使用字符串和数字作为参数,则返回 NULL。
方案二:
PHP
输出:
bool(true)
NULL
bool(true)
NULL
bool(true)
bool(false)
NULL
bool(false)
相关文章:
- PHP | IntlChar::iscntrl()函数
- PHP | IntlChar::isalpha()函数
- PHP | IntlChar::isblank()函数
- PHP | IntlChar::isbase()函数
参考: http: PHP。 PHP