(PHP 7, PHP 8)
IntlChar::getBidiPairedBracket — Get the paired bracket character for a code point
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.
Returns the paired bracket code point, or codepoint
itself if there is no such mapping. Returns
null
on failure.
Якщо кодова точка була передана як
string в кодуванні UTF-8, то тип значення, що повертається —
string, інакше ж повернеться int. Повертає null
у
разі невдачі.
Приклад #1 Тестування різних кодових точок
<?php
var_dump(IntlChar::getBidiPairedBracket(91));
var_dump(IntlChar::getBidiPairedBracket('['));
?>
Поданий вище приклад виведе:
int(93) string(1) "]"
IntlChar::PROPERTY_BIDI_PAIRED_BRACKET
IntlChar::PROPERTY_BIDI_PAIRED_BRACKET_TYPE