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


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


IntlChar::getIntPropertyMaxValue()函数是PHP中的内置函数,用于获取Unicode属性的最大值。这可用于访问信息以及处理Unicode字符。对于枚举/整数/二进制Unicode属性,这将获得最大值。

用法:

int IntlChar::getIntPropertyMaxValue( $property ) 

参数:此函数基于Unicode属性接受单个参数$property,该参数用于查找任务。它与IntlChar::PROPERTY_ *常量非常相似。


Return Values:对于Unicode属性,它是IntlChar::getIntPropertyValue()函数将返回的最大值。如果

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

程序:

<?php 
  
// PHP program to uses IntlChar::getIntPropertyMaxValue() 
// function 
  
// This function uses IntlChar::PROPERTY_* constants 
var_dump(IntlChar::getIntPropertyMaxValue 
                    (IntlChar::CHAR_CATEGORY_ENCLOSING_MARK)); 
var_dump(IntlChar::getIntPropertyMaxValue 
                              (IntlChar::BLOCK_CODE_BENGALI)); 
var_dump(IntlChar::getIntPropertyMaxValue 
                 (IntlChar::PROPERTY_GRAPHEME_CLUSTER_BREAK)); 
var_dump(IntlChar::getIntPropertyMaxValue 
                   (IntlChar::CHAR_CATEGORY_MODIFIER_SYMBOL)); 
var_dump(IntlChar::getIntPropertyMaxValue(IntlChar::NT_DIGIT)); 
  
var_dump(IntlChar::getIntPropertyMaxValue 
                  (IntlChar::LB_CONDITIONAL_JAPANESE_STARTER)); 
var_dump(IntlChar::getIntPropertyMaxValue(69));  
  
?>

输出:

int(1)
int(1)
int(12)
int(1)
int(1)
int(1)
int(-1)

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



相关用法


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