PHP | IntlChar getIntPropertyMaxValue() Function Last Updated : 27 Aug, 2019 Comments Improve Suggest changes Like Article Like Report The IntlChar::getIntPropertyMaxValue() function is an inbuilt function in PHP which is used to get the maximum value for a Unicode property. This could be used to access the information as well as manipulating the Unicode character. For an enumerated/integer/binary Unicode property, this is going to get the maximum value. Syntax: int IntlChar::getIntPropertyMaxValue( $property ) Parameters: This function accepts a single parameter $property which is used for the task of lookups, based on the Unicode property. It is quite similar to the IntlChar::PROPERTY_* constants. Return Values: For a Unicode property, it is the maximum value that is going to be returned by the IntlChar::getIntPropertyValue() function. If <=0 then the selector of this property is considered out of the range. Below program illustrate the IntlChar::getIntPropertyMaxValue() function in PHP: Program: php <?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)); ?> Output: int(1) int(1) int(12) int(1) int(1) int(1) int(-1) Reference: https://www.php.net/manual/en/intlchar.getintpropertymaxvalue.php Comment More infoAdvertise with us Next Article PHP | IntlChar getIntPropertyMaxValue() Function S SohomPramanick Follow Improve Article Tags : Web Technologies PHP PHP-function PHP-Intl Similar Reads PHP | IntlChar getIntPropertyValue() Function The IntlChar::getIntPropertyValue() function is an inbuilt function in PHP which is used to get the value for Unicode property for a code point.Syntax: int IntlChar::getIntPropertyValue( $codepoint, $property ) Parameter: This function accepts two parameters as mentioned above and described below: $ 2 min read PHP | IntlChar getIntPropertyMinValue() Function The IntlChar::getIntPropertyMinValue() function is an inbuilt function in PHP which is used to get the minimum value for a Unicode property. This could be used to access the information as well as manipulating the Unicode characters. For an enumerated/integer/binary Unicode property, this is going t 1 min read PHP | IntlChar getPropertyValueEnum() Function The IntlChar getPropertyValueEnum() function is an inbuilt function in PHP which is used to get the property value form the given value. Syntax: int IntlChar::getPropertyValueEnum( $property, $name ) Parameters: This function accepts two parameters as mentioned above and described below: $property: 1 min read PHP | IntlChar getPropertyValueName() Function The IntlChar::getPropertyValueName() function is an inbuilt function in PHP which is used to get the Unicode name for a property value. It will be according to the data present in PropertyValueAliases.txt, which is the Unicode DataBase file. Syntax: string IntlChar::getPropertyValueName( $property, 2 min read PHP | IntlChar getPropertyName() Function The IntlChar::getPropertyName() function is an inbuilt function in PHP which is used to get the Unicode name for a given property which is given in the Unicode database file PropertyAliases.txt. This function maps the property IntlChar::PROPERTY_GENERAL_CATEGORY_MASK to the synthetic names "gcm" / " 2 min read PHP | IntlChar getPropertyEnum() Function The IntlChar::getPropertyEnum() function is an inbuilt function in PHP which is used to get the property constant value for a given property name. The property name is going to be specified in PropertyAliases.txt, which is a Unicode Database file. All types of variants are recognized in this, be it 2 min read PHP | IntlChar getNumericValue() Function The IntlChar::getNumericValue() function is an inbuilt function in PHP which is used to get the numeric value for a Unicode code point as defined in the Unicode Character Database. Syntax: float IntlChar::getNumericValue( $codepoint ) Parameters: This function accepts a single parameter $codepoint w 2 min read PHP | IntlChar hasBinaryProperty() function The IntlChar::hasBinaryProperty() function is an inbuilt function in PHP which is used to checks a binary Unicode property for a code point. Syntax: bool IntlChar::hasBinaryProperty( $codepoint, $property ) Parameters: This function accepts two parameters as mentioned above and described below: $cod 2 min read PHP | IntlChar getUnicodeVersion() Function The IntlChar::getUnicodeVersion() function is an inbuilt function in PHP which is used to get the Unicode version. The Unicode standard version information is filled into an array. For example, Unicode version 2.2.1 is represented as an array with the values [2, 2, 1, 0]. Syntax: array IntlChar::get 1 min read PHP | Imagick getImageProperty() Function The Imagick::getImageProperty() function is an inbuilt function in PHP which is used to get the image property. The main difference between image properties and image artifacts is that the properties are public whereas artifacts are private. Syntax: string Imagick::getImageProperty( string $name ) P 1 min read Like