PHP 8.4.0 RC4 available for testing

IntlChar::getIntPropertyMinValue

(PHP 7, PHP 8)

IntlChar::getIntPropertyMinValueRenvoie la valeur minimale pour une propriété Unicode

Description

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

Renvoie la valeur minimale pour une propriété Unicode énumérée/entière/binaire.

Liste de paramètres

property

La propriété Unicode à chercher (voir la constante IntlChar::PROPERTY_*).

Valeurs de retour

La valeur minimale renvoyée par IntlChar::getIntPropertyValue() pour une propriété Unicode. 0 si le sélecteur de propriété est hors de portée.

Exemples

Exemple #1 Test de différentes propriétés

<?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)); // Une valeur inventée
?>

L'exemple ci-dessus va afficher :

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

Voir aussi

add a note

User Contributed Notes

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