ResourceBundle::get
resourcebundle_get
(PHP 5 >= 5.3.2, PHP 7, PHP 8, PECL intl >= 2.0.0)
ResourceBundle::get -- resourcebundle_get — バンドルからデータを取得する
説明
オブジェクト指向型
手続き型
インデックスあるいは文字列キーを指定して、バンドルからデータを取得します。
パラメータ
bundle
-
ResourceBundle オブジェクト。
index
-
データのインデックス。文字列あるいは整数値となります。
fallback
-
ロケールが正確にマッチしなければ、 親のロケールにfallback することを許すかどうか
戻り値
指定したインデックスのデータ、あるいはエラー時に null
を返します。
文字列、整数値、バイナリデータ文字列は、それぞれに対応する PHP の型として返します。
整数の配列は PHP の配列として返します。複雑な型は
ResourceBundle オブジェクトとして返します。
例
例1 resourcebundle_get() の例
<?php
$r = resourcebundle_create( 'es', "/usr/share/data/myapp");
echo resourcebundle_get($r, 'somestring');
?>
例2 オブジェクト指向の例
<?php
$r = new ResourceBundle( 'es', "/usr/share/data/myapp");
echo $r->get('somestring');
?>
上の例の出力は以下となります。
?Hola, mundo!
+add a note
User Contributed Notes
There are no user contributed notes for this page.
↑ and ↓ to navigate •
Enter to select •
Esc to close
Press Enter without
selection to search using Google