Syntax:int IntlChar::getIntPropertyMinValue ($property)
Parameters: This function takes one parameter, $property,which is used for searching based on the Unicode property. This is very similar to the IntlChar::PROPERTY_ * constants.Return Values:For a Unicode property, this is the maximum value that will be returned by the IntlChar::getIntPropertyValue() function. It will return 0 if the property selector is significantly out of range.The following program illustrates the IntlChar::getIntPropertyMinValue() function in PHP:Program:
// PHP program for using IntlChar::getIntPropertyMinValue()
// function
// This function uses IntlChar::PROPERTY_ * constants
var_dump (IntlChar::getIntPropertyMinValue
(IntlChar::CHAR_CATEGORY_ENCLOSING_MARK));
var_dump (IntlChar::getIntPropertyMinValue
(IntlChar::BLOCK_CODE_BENGALI));
var_dump (IntlChar::getIntPropertyMinValue
(IntlChar::PROPERTY_GRAPHEME_CLUSTER_BREAK));
var_dump (IntlChar::getIntPropertyMinValue
(IntlChar::CHAR_CATEGORY_MODIFIER_SYMBOL));
var_dump (IntlChar::getIntPropertyMinValue
(IntlChar::NT_DIGIT));
var_dump (IntlChar::getIntPropertyMinValue
(IntlChar::LB_CONDITIONAL_JAPANESE_STARTER));
var_dump (IntlChar::getIntPropertyMinValue (49));
?>
Exit:int (0 ) int (0) int (0) int (0) int (0) int (0) int (0)
Link: https://www.php.net/manual/en/intlchar.getintpropertyminvalue.php