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


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


IntlChar::getBlockCode()函數是PHP中的一個內置函數,用於獲取包含代碼點的Unicode分配塊。此函數返回包含字符的Unicode分配塊。

用法:

int IntlChar::getBlockCode ( $codepoint )

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


返回值:此函數返回$codepoint的塊值。下麵列出了一些代碼點的塊值:

  • IntlChar::BLOCK_CODE_BASIC_LATIN
  • IntlChar::BLOCK_CODE_GREEK
  • IntlChar::BLOCK_CODE_MISCELLANEOUS_SYMBOLS

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

程序1:

<?php 
  
// PHP function to illustrate  
// the use of IntlChar::getBlockCode() 
  
// Input data is character type 
var_dump(IntlChar::getBlockCode("G") ===  
          IntlChar::BLOCK_CODE_BASIC_LATIN); 
  
// Input data is string type 
var_dump(IntlChar::getBlockCode("ABC") ===  
          IntlChar::BLOCK_CODE_BASIC_LATIN); 
  
// Input data is character type 
var_dump(IntlChar::getBlockCode("*") ===  
               IntlChar::BLOCK_CODE_GREEK); 
  
// Input data is unicode character type 
var_dump(IntlChar::getBlockCode("\u{2603}") ===  
     IntlChar::BLOCK_CODE_MISCELLANEOUS_SYMBOLS); 
  
// Input data is character type 
var_dump(IntlChar::getBlockCode("@") ===  
                     IntlChar::BLOCK_CODE_GREEK); 
?>
輸出:
bool(true)
bool(false)
bool(false)
bool(true)
bool(false)

程序2:

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

相關文章:

參考: http://php.net/manual/en/intlchar.getblockcode.php



相關用法


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