(PHP 7, PHP 8)
IntlChar::getIntPropertyMinValue — Get the min value for a Unicode property
Description public static IntlChar::getIntPropertyMinValue(
int$property
):
intGets the minimum value for an enumerated/integer/binary Unicode property.
Parametersproperty
The Unicode property to lookup (see the IntlChar::PROPERTY_*
constants).
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)
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4