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


PHP IntlChar getFC_NFKC_Closure()用法及代碼示例


IntlChar::getFC_NFKC_Closure()函數是PHP中的內置函數,用於獲取代碼點的FC_NFKC_Closure屬性。此函數返回代碼點的FC_NFKC_Closure屬性字符串。如果代碼點為none,則返回一個空字符串。

用法:

string IntlChar::getFC_NFKC_Closure( $codepoint )

參數:該函數接受單個參數$codepoint,該參數是必需的。 $codepoint值是整數值或字符,被編碼為UTF-8字符串。


返回值:此函數返回代碼點的FC_NFKC_Closure屬性字符串,如果沒有,則返回一個空字符串。

以下示例程序旨在說明PHP中的IntlChar::getFC_NFKC_Closure()函數:

程序1:

<?php 
   
// PHP function to illustrate  
// the use of IntlChar::getCombiningClass() 
   
// Input data is unicode character type 
var_dump(IntlChar::getFC_NFKC_Closure("\u{2121}")); 
  
// Input data is unicode character type 
var_dump(IntlChar::getFC_NFKC_Closure("\u{1D2D}")); 
  
// Input data is string type 
var_dump(IntlChar::getFC_NFKC_Closure("\p{143}")); 
   
// Input data is character type 
var_dump(IntlChar::getFC_NFKC_Closure(" ")); 
   
// Input data is unicode character type 
var_dump(IntlChar::getFC_NFKC_Closure("\u{350}")); 
   
// Input data is string type 
var_dump(IntlChar::getFC_NFKC_Closure("XYZ")); 
   
// Input data is unicode character type 
var_dump(IntlChar::getFC_NFKC_Closure("\u{0358}")); 
   
?>
輸出:
string(3) "tel"
string(2) "æ"
NULL
string(0) ""
string(0) ""
NULL
string(0) ""

程序2:

<?php 
// PHP code to illustrate getFC_NFKC_Closure() 
       
// Declare an array $arr 
$arr = array("\u{2121}", "\u{1D2D}", " ", "\u{350}", "XYZ", "G", 
                "GeeksforGeeks", "^"); 
      
// Loop run for every array element 
foreach ($arr as $val){ 
          
    // Check each element as code point data 
    var_dump(IntlChar::getFC_NFKC_Closure($val)); 
} 
?>
輸出:
string(3) "tel"
string(2) "æ"
string(0) ""
string(0) ""
NULL
string(0) ""
NULL
string(0) ""

相關文章:

參考: http://php.net/manual/en/intlchar.getfc-nfkc-closure.php



相關用法


注:本文由純淨天空篩選整理自Mahadev99大神的英文原創作品 PHP | IntlChar getFC_NFKC_Closure() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。