Рекурсивный акроним словосочетания «PHP: Hypertext Preprocessor»
Добро пожаловать на форум PHP программистов!
За последние 24 часа нас посетили 18309 программистов и 1658 роботов. Сейчас ищут 1085 программистов ...
IntlChar::getCombiningClass - Get the combining class of a code point
Вернуться к: IntlChar
IntlChar::getCombiningClass
(PHP 7)
IntlChar::getCombiningClass — Get the combining class of a code point
Описание
Returns the combining class of the code point.
Список параметров
Возвращаемые значения
Returns the combining class of the character.
Примеры
Пример #1 Testing different code points
<?php
var_dump(IntlChar::getCombiningClass("A"));
var_dump(IntlChar::getCombiningClass("\u{0334}"));
var_dump(IntlChar::getCombiningClass("\u{0358}"));
?>
Результат выполнения данного примера:
int(0) int(1) int(232)
Вернуться к: IntlChar