(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 )