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


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


IntlChar::getCombiningClass()函数是PHP中的一个内置函数,用于获取代码点的组合类。

用法:

int IntlChar::getCombiningClass ( $codepoint )

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


返回值:该函数返回代码点的组合类。

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

程序1:

<?php 
   
// PHP function to illustrate  
// the use of IntlChar::getCombiningClass() 
   
// Input data is string type 
var_dump(IntlChar::getCombiningClass("\p{143}")); 
   
// Input data is character type 
var_dump(IntlChar::getCombiningClass(" ")); 
   
// Input data is unicode character type 
var_dump(IntlChar::getCombiningClass("\u{350}")); 
   
// Input data is string type 
var_dump(IntlChar::getCombiningClass("XYZ")); 
   
// Input data is unicode character type 
var_dump(IntlChar::getCombiningClass("\u{0358}")); 
   
?>
输出:
NULL
int(0)
int(230)
NULL
int(232)

程序2:

<?php 
// PHP code to illustrate getCombiningClass() 
       
// Declare an array $arr 
$arr = array("\u{314}", "GeeksforGeeks", "^", "\u{0324}", "6", "\n"); 
      
// Loop run for every array element 
foreach ($arr as $val){ 
          
    // Check each element as code point data 
    var_dump(IntlChar::getCombiningClass($val)); 
} 
?>
输出:
int(230)
NULL
int(0)
int(220)
int(0)
int(0)

相关文章:

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



相关用法


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