(PECL ds >= 1.0.0)
Ds\Vector::set — 更新给定索引处的值
index
要更新的值的索引。
value
新值。
不返回值。
如果索引无效,则抛出 OutOfRangeException。
示例 #1 Ds\Vector::set() 示例
<?php
$vector = new \Ds\Vector(["a", "b", "c"]);
$vector->set(1, "_");
print_r($vector);
?>
以上示例将输出类似以下内容
Ds\Vector Object ( [0] => a [1] => _ [2] => c )
示例 #2 使用数组语法 Ds\Vector::set() 示例
<?php
$vector = new \Ds\Vector(["a", "b", "c"]);
$vector[1] = "_";
print_r($vector);
?>
以上示例将输出类似以下内容
Ds\Vector Object ( [0] => a [1] => _ [2] => c )