Returns the value at a given index

Ds\Set::get

(PECL ds >= 1.0.0)

Ds\Set::getReturns the value at a given index

說明

public Ds\Set::get(int $index): mixed

Returns the value at a given index.

參數

index

The index to access, starting at 0.

返回值

The value at the requested index.

錯誤/異常

OutOfRangeException if the index is not valid.

範例

示例 #1 Ds\Set::get() example

<?php
$set 
= new \Ds\Set(["a""b""c"]);

var_dump($set->get(0));
var_dump($set->get(1));
var_dump($set->get(2));
?>

以上例程的輸出類似於:

string(1) "a"
string(1) "b"
string(1) "c"

示例 #2 Ds\Set::get() example using array syntax

<?php
$set 
= new \Ds\Set(["a""b""c"]);

var_dump($set[0]);
var_dump($set[1]);
var_dump($set[2]);
?>

以上例程的輸出類似於:

string(1) "a"
string(1) "b"
string(1) "c"

發佈留言

發佈留言必須填寫的電子郵件地址不會公開。 必填欄位標示為 *