(No version information available, might only be in Git)
Locale::isRightToLeft — Check whether a locale uses a right-to-left writing system
Determines whether a locale uses a right-to-left writing system.
This method relies on the ICU library and evaluates the dominant script associated with the locale.
If an empty string is provided, the default locale is used.
locale| Version | Beschreibung |
|---|---|
| 8.5.0 | Added Locale::isRightToLeft(). |
Beispiel #1 Checking text direction for a locale
var_dump(Locale::isRightToLeft('en-US'));
var_dump(Locale::isRightToLeft('ar'));
Das oben gezeigte Beispiel erzeugt folgende Ausgabe:
bool(false) bool(true)