update page now

Locale::isRightToLeft

(No version information available, might only be in Git)

Locale::isRightToLeftCheck whether a locale uses a right-to-left writing system

Descrição

public static Locale::isRightToLeft( string $locale = "" ): bool

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.

Parâmetros

locale
The locale identifier. If empty, the default locale is used.

Valor Retornado

Returns true if the locale uses a right-to-left writing system, or false otherwise.

Registro de Alterações

Versão Descrição
8.5.0 Added Locale::isRightToLeft().

Exemplos

Exemplo #1 Checking text direction for a locale

var_dump(Locale::isRightToLeft('en-US'));
var_dump(Locale::isRightToLeft('ar'));

O exemplo acima produzirá:

bool(false)
bool(true)
adicionar nota

Notas de Usuários

Não há notas de usuários para esta página.
To Top