(PHP 7, PHP 8)
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. Returns null
on failure.
Приклад #1 Тестування різних кодових точок
<?php
var_dump(IntlChar::getCombiningClass("A"));
var_dump(IntlChar::getCombiningClass("\u{0334}"));
var_dump(IntlChar::getCombiningClass("\u{0358}"));
?>
Поданий вище приклад виведе:
int(0) int(1) int(232)