Ds\Sequence::set
(PECL ds >= 1.0.0)
Ds\Sequence::set — Updates a value at a given index
説明
Updates a value at a given index.
パラメータ
index
-
The index of the value to update.
value
-
The new value.
戻り値
値を返しません。
エラー / 例外
OutOfRangeException if the index is not valid.
例
例1 Ds\Sequence::set() example
<?php
$sequence = new \Ds\Vector(["a", "b", "c"]);
$sequence->set(1, "_");
print_r($sequence);
?>
上の例の出力は、 たとえば以下のようになります。
Ds\Vector Object ( [0] => a [1] => _ [2] => c )
例2 Ds\Sequence::set() example using array syntax
<?php
$sequence = new \Ds\Vector(["a", "b", "c"]);
$sequence[1] = "_";
print_r($sequence);
?>
上の例の出力は、 たとえば以下のようになります。
Ds\Vector Object ( [0] => a [1] => _ [2] => c )
+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