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


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。