IntlChar::isMirrored

(PHP 7, PHP 8)

IntlChar::isMirroredCheck if code point has the Bidi_Mirrored property

Descrição

public static IntlChar::isMirrored(int|string $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

O valor int do ponto de código (por exemplo, 0x2603 para U+2603 SNOWMAN) ou o caractere codificado como uma string UTF-8 (por exemplo, "\u{2603}").

Valor Retornado

Returns true if codepoint has the Bidi_Mirrored property, false if not. Returns null on failure.

Exemplos

Exemplo #1 Testando diferentes pontos de código

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

O exemplo acima produzirá:

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

Veja Também

add a note

User Contributed Notes

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