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