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


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


IntlChar::hasBinaryProperty()函数是PHP中的内置函数,用于检查代码点的二进制Unicode属性。

用法:

bool IntlChar::hasBinaryProperty( $codepoint, $property )

参数:该函数接受上述和以下描述的两个参数:


  • $codepoint:$codepoint值是整数值或字符,被编码为UTF-8字符串。
  • $property:这将存储IntlChar::PROPERTY_ *常量。

返回值:此函数基于二进制Unicode属性返回布尔值(真或假)。

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

程序1:

<?php 
  
// PHP function to illustrate the use of  
// IntlChar::hasBinaryProperty() function 
  
// Input data is character type  
var_dump(IntlChar::hasBinaryProperty("G", IntlChar::PROPERTY_ALPHABETIC)); 
  
// Input data is string type  
var_dump(IntlChar::hasBinaryProperty("Geeks", IntlChar::PROPERTY_ALPHABETIC)); 
  
// Input data is mirrored bracket character type  
var_dump(IntlChar::hasBinaryProperty("}", IntlChar::PROPERTY_BIDI_MIRRORED)); 
  
// Input data is character type  
var_dump(IntlChar::hasBinaryProperty("%", IntlChar::PROPERTY_BIDI_MIRRORED)); 
?>
输出:
bool(true)
NULL
bool(true)
bool(false)

程序2:

<?php 
  
// PHP function to illustrate the use of  
// IntlChar::hasBinaryProperty() function 
  
// Declare an array $arr  
$arr = array("A", "{", "^", ")", "6", "Geeks", "))"); 
  
// Loop run for every array element  
foreach ($arr as $val){  
            
    // Check each element as code point data  
    var_dump(IntlChar::hasBinaryProperty($val, 
                   IntlChar::PROPERTY_BIDI_MIRRORED));  
}  
  
?>
输出:
bool(false)
bool(true)
bool(false)
bool(true)
bool(false)
NULL
NULL

参考: https://www.php.net/manual/en/intlchar.hasbinaryproperty.php



相关用法


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