PHP 8.6.0 Alpha 2 available for testing

Locale::isRightToLeft

locale_is_right_to_left

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

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

Açıklama

Nesne yönelimli kullanım

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

Yordamsal kullanım

function locale_is_right_to_left(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.

Bağımsız Değişkenler

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

Dönen Değerler

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

Sürüm Bilgisi

Sürüm: Açıklama
8.5.0 Added Locale::isRightToLeft().

Örnekler

Örnek 1 Checking text direction for a locale

<?php

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

Yukarıdaki örneğin çıktısı:

bool(false)
bool(true)
add a note

User Contributed Notes

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