La función IntlChar getPropertyValueEnum() es una función incorporada en PHP que se usa para obtener el valor de propiedad del valor dado.
Sintaxis:
int IntlChar::getPropertyValueEnum( $property, $name )
Parámetros: esta función acepta dos parámetros, como se mencionó anteriormente y se describe a continuación:
- $property: Almacena las constantes IntlChar::PROPERTY_*.
- $nombre: Almacena el valor del nombre que se almacenará.
Valor devuelto: si el nombre proporcionado no coincide con ninguna propiedad o si la propiedad no es válida, devuelve el valor entero correspondiente o IntlChar::PROPERTY_INVALID_CODE.
Los siguientes programas ilustran la función IntlChar::getPropertyValueEnum() en PHP:
Programa:
<?php // PHP program to implement IntlChar::getPropertyValueEnum() function // Unicode property constant and it corresponding name is same var_dump(IntlChar::getPropertyValueEnum(IntlChar::PROPERTY_BIDI_CLASS, 'RIGHT_TO_LEFT') === IntlChar::CHAR_DIRECTION_RIGHT_TO_LEFT); // Unicode property constant and it corresponding name is same var_dump(IntlChar::getPropertyValueEnum(IntlChar::PROPERTY_BLOCK, 'greek') === IntlChar::BLOCK_CODE_GREEK); // Unicode property constant and it name is corresponding name is same var_dump(IntlChar::getPropertyValueEnum(IntlChar::PROPERTY_BIDI_CLASS, 'some made-up string') === IntlChar::PROPERTY_INVALID_CODE); // Unicode property constant and it name is not matching so it return false var_dump(IntlChar::getPropertyValueEnum(IntlChar::PROPERTY_BIDI_CLASS, 'RIGHT_TO_LEFT') === IntlChar::BLOCK_CODE_GREEK); ?>
bool(true) bool(true) bool(true) bool(false)
Referencia: https://www.php.net/manual/en/intlchar.getpropertyvalueenum.php
Publicación traducida automáticamente
Artículo escrito por snehal98doshi y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA