IntlChar::getIntPropertyMinValue

(PHP 7) Get the min value for a Unicode property public static int IntlChar::getIntPropertyMinValue ( int $property ) Gets the minimum value for an enumerated/integer/binary Unicode property. Parameters: property The Unicode property to lookup (see the IntlChar::PROPERTY_* constants). Returns: The maximum value returned by IntlChar::getIntPropertyV

IntlChar::getIntPropertyMaxValue

(PHP 7) Get the max value for a Unicode property public static int IntlChar::getIntPropertyMaxValue ( int $property ) Gets the maximum value for an enumerated/integer/binary Unicode property. Parameters: property The Unicode property to lookup (see the IntlChar::PROPERTY_* constants). Returns: The maximum value returned by IntlChar::getIntPropertyV

IntlChar::getFC_NFKC_Closure

(PHP 7) Get the FC_NFKC_Closure property for a code point public static string IntlChar::getFC_NFKC_Closure ( mixed $codepoint ) Gets the FC_NFKC_Closure property string for a character. Parameters: codepoint The integer codepoint value (e.g. 0x2603 for U+2603 SNOWMAN), or the character encoded as a UTF-8 string (e.g. "\u{2603}") Returns: Returns t

IntlChar::getCombiningClass

(PHP 7) Get the combining class of a code point public static int IntlChar::getCombiningClass ( mixed $codepoint ) Returns the combining class of the code point. Parameters: codepoint The integer codepoint value (e.g. 0x2603 for U+2603 SNOWMAN), or the character encoded as a UTF-8 string (e.g. "\u{2603}") Returns: Returns the combining class of the

IntlChar::getBlockCode

(PHP 7) Get the Unicode allocation block containing a code point public static int IntlChar::getBlockCode ( mixed $codepoint ) Returns the Unicode allocation block that contains the character. Parameters: codepoint The integer codepoint value (e.g. 0x2603 for U+2603 SNOWMAN), or the character encoded as a UTF-8 string (e.g. "\u{2603}") Returns: Ret

IntlChar::getBidiPairedBracket

(PHP 7) Get the paired bracket character for a code point public static mixed IntlChar::getBidiPairedBracket ( mixed $codepoint ) Maps the specified character to its paired bracket character. For Bidi_Paired_Bracket_Type!=None, this is the same as IntlChar::charMirror(). Otherwise codepoint itself is returned. Parameters: codepoint The integer codepoint value (e.g. 0x260

IntlChar::forDigit

(PHP 7) Get character representation for a given digit and radix public static int IntlChar::forDigit ( int $digit [, int $radix = 10 ] ) Determines the character representation for a specific digit in the specified radix. If the value of radix is not a valid radix, or the value of digit is not a valid digit in the specified radix, the null character (U+0000) is returned. The radix argument is valid if it is greater tha

IntlChar::foldCase

(PHP 7) Perform case folding on a code point public static mixed IntlChar::foldCase ( mixed $codepoint [, int $options = IntlChar::FOLD_CASE_DEFAULT ] ) The given character is mapped to its case folding equivalent; if the character has no case folding equivalent, the character itself is returned. Parameters: codepoint The integer codepoint value (e.g. 0x2603 for U+2603 SN

IntlChar::enumCharTypes

(PHP 7) Enumerate all code points with their Unicode general categories public static void IntlChar::enumCharTypes ( callable $callback ) Enumerates efficiently all code points with their Unicode general categories. This is useful for building data structures, for enumerating all assigned code points, etc. For each contiguous range of code points with a given general category ("character type"), the callback function is c

IntlChar::enumCharNames

(PHP 7) Enumerate all assigned Unicode characters within a range public static void IntlChar::enumCharNames ( mixed $start, mixed $limit, callable $callback [, int $nameChoice = IntlChar::UNICODE_CHAR_NAME ] ) Enumerate all assigned Unicode characters between the start and limit code points (start inclusive, limit exclusive) and call a function for each, passing the code point value and the character name. For Unicode 1.