IntlChar::getBidiPairedBracket
(PHP 7, PHP 8)
Get the paired bracket character for a code point
Description
Maps the specified character to its paired bracket character.
For IntlChar::PROPERTY_BIDI_PAIRED_BRACKET_TYPE !== IntlChar::BPT_NONE, this is the same as IntlChar::charMirror(). Otherwise codepoint itself is returned.
Parameters
codepointParameter
Return Values
Returns the paired bracket code point, or codepoint itself if there is no such mapping. Returns null on failure.
Return
Examples
Example
<?php
var_dump(IntlChar::getBidiPairedBracket(91));
var_dump(IntlChar::getBidiPairedBracket('['));
?>The above example will output:
int(93)
string(1) "]"Notes
This method is available as of ICU version 52.
See Also
IntlChar::charMirror()IntlChar::PROPERTY_BIDI_PAIRED_BRACKETIntlChar::PROPERTY_BIDI_PAIRED_BRACKET_TYPE