当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


PHP IntlChar isdefined()用法及代码示例


IntlChar::isdefined()函数是PHP中的内置函数,用于检查是否定义了代码点。可以说该字符是否被分配了一个字符。对于Cn以外的常规类别(其他,未分配),它为True。

用法:

bool IntlChar::isdefined ( $codepoint )

参数:该函数接受单个参数$codepoint,该参数是必需的。 $codepoint值是整数值或字符,被编码为UTF-8字符串。


返回值:如果$codepoint是已定义的字符,则此函数返回True,否则返回False。

以下示例程序旨在说明PHP中的IntlChar::isdefined()函数:

程序1:

<?php 
  
// PHP function to illustrate  
// the use of IntlChar::isdefined() 
  
// Input data is character type 
var_dump(IntlChar::isdefined("A")); 
  
// Input data is character type 
var_dump(IntlChar::isdefined(" ")); 
  
// Input data is unicode character 
var_dump(IntlChar::isdefined("\u{FDD0}")); 
  
// Input data is string type 
var_dump(IntlChar::isdefined("XYZ")); 
  
// Input data is character type 
var_dump(IntlChar::isdefined("5")); 
  
?>
输出:
bool(true)
bool(true)
bool(false)
NULL
bool(true)

程序2:

<?php 
// PHP code to illustrate isdefined() 
      
// Declare an array $arr 
$arr = array("G", "GeeksforGeeks", "^", "1001", "6", "\n", 
                                             "\n\n", "\t"); 
     
// Loop run for every array element 
foreach ($arr as $val){ 
         
    // Check each element as code point data 
    var_dump(IntlChar::isdefined($val)); 
} 
?>
输出:
bool(true)
NULL
bool(true)
NULL
bool(true)
bool(true)
NULL
bool(true)

相关文章:

参考: http://php.net/manual/en/intlchar.isdefined.php



相关用法


注:本文由纯净天空筛选整理自Mahadev99大神的英文原创作品 PHP | IntlChar isdefined() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。