CakeFest 2024: The Official CakePHP Conference

IntlChar::isMirrored

(PHP 7, PHP 8)

IntlChar::isMirroredCheck if code point has the Bidi_Mirrored property

Beschreibung

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.

Parameter-Liste

codepoint

Ein Wert vom Typ int, der einen Codepoint darstellt (z. B. 0x2603 für U+2603 SNOWMAN) oder ein als UTF-8-String kodiertes Zeichen (z. B. "\u{2603}")

Rückgabewerte

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

Beispiele

Beispiel #1 Testen unterschiedlicher Codepoints

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

Das oben gezeigte Beispiel erzeugt folgende Ausgabe:

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

Siehe auch

add a note

User Contributed Notes

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