Рекурсивный акроним словосочетания «PHP: Hypertext Preprocessor»
Добро пожаловать на форум PHP программистов!
За последние 24 часа нас посетил 18131 программист и 1604 робота. Сейчас ищут 1259 программистов ...
IntlChar::getNumericValue - Get the numeric value for a Unicode code point
Вернуться к: IntlChar
IntlChar::getNumericValue
(PHP 7)
IntlChar::getNumericValue — Get the numeric value for a Unicode code point
Описание
Gets the numeric value for a Unicode code point as defined in the Unicode Character Database.
For characters without any numeric values in the Unicode Character Database, this function will return float(-123456789).
Список параметров
Возвращаемые значения
Numeric value of codepoint
,
or float(-123456789) if none is defined.
Примеры
Пример #1 Testing different code points
<?php
var_dump(IntlChar::getNumericValue("4"));
var_dump(IntlChar::getNumericValue("x"));
var_dump(IntlChar::getNumericValue("\u{216C}"));
?>
Результат выполнения данного примера:
float(4) float(-123456789) float(50)
Вернуться к: IntlChar