當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。