|
Ds\Deque::getReturns the value at a given index 説明
public mixed Ds\Deque::get(int
$index )Returns the value at a given index. パラメータ
戻り値The value at the requested index. エラー / 例外OutOfRangeException if the index is not valid. 例例1 Ds\Deque::get example
上の例の出力は、 たとえば以下のようになります。 string(1) "a" string(1) "b" string(1) "c" 例2 Ds\Deque::get example using array syntax
上の例の出力は、 たとえば以下のようになります。 string(1) "a" string(1) "b" string(1) "c" |