Locale::getScript

locale_get_script

(PHP 5 >= 5.3.0, PHP 7, PHP 8, PECL intl >= 1.0.0)

Locale::getScript -- locale_get_script入力ロケールの文字を取得する

説明

オブジェクト指向型

public static Locale::getScript(string $locale): ?string

手続き型

locale_get_script(string $locale): ?string

入力ロケールの文字を取得します。

パラメータ

locale

文字を取り出したいロケール。

戻り値

このロケールの文字サブタグ、あるいは存在しない場合に null を返します。

例1 locale_get_script() の例

<?php
echo locale_get_script('sr-Cyrl');
?>

例2 オブジェクト指向の例

<?php
echo Locale::getScript('sr-Cyrl');
?>

上の例の出力は以下となります。

Cyrl

参考

add a note

User Contributed Notes 1 note

up
1
Patanjali
7 years ago
locale_get_script does no validation of whether the script exists, but just extracts the 4-character text that looks like it can be the script part of the locale, and formats it with an initial cap.
To Top