IntlChar::isMirrored

(PHP 7)

IntlChar::isMirroredCheck if code point has the Bidi_Mirrored property

Descrição

public static IntlChar::isMirrored ( mixed $codepoint ) : bool

Determines whether the code point has the Bidi_Mirrored property.

This property is set for characters that are commonly used in Right-To-Left contexts and need to be displayed with a "mirrored" glyph.

Parâmetros

codepoint

Um codepoint integer (por exemplo 0x2603 para U+2603 SNOWMAN), ou um caracter codificado como uma string UTF-8 (exemplo "\u{2603}")

Valor Retornado

Returns TRUE if codepoint has the Bidi_Mirrored property, FALSE if not.

Exemplos

Exemplo #1 Testando codepoints diferentes

<?php
var_dump
(IntlChar::isMirrored("A"));
var_dump(IntlChar::isMirrored("<"));
var_dump(IntlChar::isMirrored("("));
?>

O exemplo acima irá imprimir:

bool(false)
bool(true)
bool(true)

Veja Também