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()函数:程序1:
<?php
// PHP code to illustrate IntlChar::isbase()
// Function
// Input data is character type
var_dump(IntlChar::isbase("D"));
// Input data is string type
var_dump(IntlChar::isbase("Geeksforgeeks"));
// Input data is integer type
var_dump(IntlChar::isbase("234"));
// Input data is special character type
var_dump(IntlChar::isbase("*"));
?>
输出:
bool(true) NULL NULL bool(false)
程序2:
<?php
//PHP code to illustrate isbase()
// Declare an array $arr
$arr = array("4", "20001111", "^", " ", "*", "GeeksforGeeks");
// Loop run for every array element
foreach ($arr as $val){
// Check each element as code point data
var_dump(IntlChar::isbase($val));
}
?>
输出:
bool(true) NULL bool(false) NULL bool(false) NULL
相关文章:
参考: http://php.net/manual/en/intlchar.isbase.php
相关用法
- d3.js d3.lab()用法及代码示例
- PHP exp()用法及代码示例
- PHP Ds\Map put()用法及代码示例
- d3.js d3.hcl()用法及代码示例
- PHP sin( )用法及代码示例
- PHP abs()用法及代码示例
- PHP cos( )用法及代码示例
- PHP tan( )用法及代码示例
- d3.js d3.map.set()用法及代码示例
- PHP next()用法及代码示例
- PHP Ds\Map get()用法及代码示例
- d3.js d3.sum()用法及代码示例
注:本文由纯净天空筛选整理自jit_t大神的英文原创作品 PHP | IntlChar::isbase() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。