IntlChar::getBidiPairedBracket

(PHP 7)

IntlChar::getBidiPairedBracketGet the paired bracket character for a code point

Descrierea

public static IntlChar::getBidiPairedBracket ( mixed $codepoint ) : mixed

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.

Parametri

codepoint

Valoarea codepoint de tip integer (de ex. 0x2603 pentru U+2603 SNOWMAN) sau caracterul codificat ca string în UTF-8 (de ex. "\u{2603}")

Valorile întoarse

Returns the paired bracket code point, or codepoint itself if there is no such mapping.

Tipul întors va fi integer, doar dacă code point nu a fost transmis ca string UTF-8, în care caz va fi întors un string.

Exemple

Example #1 Testarea diferitor code points

<?php
var_dump
(IntlChar::getBidiPairedBracket(91));
var_dump(IntlChar::getBidiPairedBracket('['));
?>

Exemplul de mai sus va afișa:

int(93)
string(1) "]"

A se vedea și

  • IntlChar::charMirror() - Get the "mirror-image" character for a code point
  • IntlChar::PROPERTY_BIDI_PAIRED_BRACKET
  • IntlChar::PROPERTY_BIDI_PAIRED_BRACKET_TYPE

add a note add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top