📜  PHP | IntlChar::isbase()函数

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

PHP | IntlChar::isbase()函数

IntlChar::isbase()函数是PHP中的一个内置函数,用于检查给定的输入数据是否为基本字符。如果指定的代码点是基本字符,则对于一般类别“L”(字母)、“N”(数字)、“Mc”(间距组合标记)和“Me”(封闭标记)返回 TRUE。
句法:

bool IntlChar::isbase( $codepoint )

参数:此函数接受一个强制的参数$codepoint 。输入参数是整数或字符,编码为UTF-8字符串。
返回值:如果 $codepoint 是基本字符,则返回 TRUE,否则返回 FALSE。
例子:

Input :(IntlChar::isbase("D"))
Output : bool(true)

Input : (IntlChar::isbase("*"))
Output : bool(false)

Input :(IntlChar::isbase("9"));
Output :bool(true)

下面的程序说明了PHP中的IntlChar::isbase()函数:
方案一:

php


php


输出:

bool(true) 
NULL 
NULL 
bool(false) 

方案二:

PHP


输出:

bool(true) 
NULL 
bool(false) 
NULL 
bool(false) 
NULL 

相关文章:

  • PHP | IntlChar::isdigit()函数
  • PHP | IntlChar::isblank()函数

参考: http: PHP。 PHP