|
Ds\Map::getReturns the value for a given key 説明
public mixed Ds\Map::get(mixed
$key , mixed $default = ?)Returns the value for a given key, or an optional default value if the key could not be found.
警告
Be careful when using array syntax. Scalar keys will be coerced to
integers by the engine. For example, See Arrays. パラメータ
戻り値
The value mapped to the given エラー / 例外OutOfBoundsException if the key could not be found and a default value was not provided. 例例1 Ds\Map::get example
上の例の出力は、 たとえば以下のようになります。 int(1) int(10) 例2 Ds\Map::get example using array syntax
上の例の出力は、 たとえば以下のようになります。 int(1) |