(No version information available, might only be in Git)
Locale::isRightToLeft -- locale_is_right_to_left — 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.
localeThe locale identifier. If empty, the default locale is used.
Returns true if the locale uses a right-to-left
writing system, or false otherwise.
| Версія | Опис |
|---|---|
| 8.5.0 | Added Locale::isRightToLeft(). |
Приклад #1 Checking text direction for a locale
<?php
var_dump(Locale::isRightToLeft('en-US'));
var_dump(Locale::isRightToLeft('ar'));Поданий вище приклад виведе:
bool(false) bool(true)