|
Locale::isRightToLeftCheck whether a locale uses a right-to-left writing system Description
public
static
bool Locale::isRightToLeft(
string
$locale
= ""
)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. Parameters
Return Values
Returns Changelog
ExamplesExample #1 Checking text direction for a locale
var_dump(Locale::isRightToLeft('en-US'));
var_dump(Locale::isRightToLeft('ar'));
The above example will output: bool(false) bool(true) |