Рекурсивный акроним словосочетания «PHP: Hypertext Preprocessor»
Добро пожаловать на форум PHP программистов!
За последние 24 часа нас посетили 18290 программистов и 1618 роботов. Сейчас ищут 1300 программистов ...
IntlChar::getFC_NFKC_Closure - Get the FC_NFKC_Closure property for a code point
Вернуться к: IntlChar
IntlChar::getFC_NFKC_Closure
(PHP 7)
IntlChar::getFC_NFKC_Closure — Get the FC_NFKC_Closure property for a code point
Описание
Gets the FC_NFKC_Closure property string for a character.
Список параметров
Возвращаемые значения
Returns the FC_NFKC_Closure property string for the codepoint
, or an empty string if there is none.
Примеры
Пример #1 Testing different code points
<?php
var_dump(IntlChar::getFC_NFKC_Closure("\u{2121}"));
var_dump(IntlChar::getFC_NFKC_Closure("\u{1D2D}"));
?>
Результат выполнения данного примера:
string(3) "tel" string(2) "æ"
Вернуться к: IntlChar