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


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