PHP 7.0.6 Released

IntlChar::getIntPropertyMinValue

(PHP 7)

IntlChar::getIntPropertyMinValueGet the min value for a Unicode property

Description

public static int IntlChar::getIntPropertyMinValue ( int $property )

Gets the minimum value for an enumerated/integer/binary Unicode property.

Parameters

property

The Unicode property to lookup (see the IntlChar::PROPERTY_* constants).

Return Values

The maximum value returned by IntlChar::getIntPropertyValue() for a Unicode property. 0 if the property selector is out of range.

Examples

Example #1 Testing different properties

<?php
var_dump
(IntlChar::getIntPropertyMinValue(IntlChar::PROPERTY_BIDI_CLASS));
var_dump(IntlChar::getIntPropertyMinValue(IntlChar::PROPERTY_SCRIPT));
var_dump(IntlChar::getIntPropertyMinValue(IntlChar::PROPERTY_IDEOGRAPHIC));
var_dump(IntlChar::getIntPropertyMinValue(999999999)); // Some made-up value
?>

The above example will output:

int(0)
int(0)
int(0)
int(0)

See Also

User Contributed Notes

There are no user contributed notes for this page.
To Top