Ds\Vector::set
Ds\Vector::set
(PECL ds >= 1.0.0)
Ds \ Vector :: set - 更新给定索引处的值。
描述
public void Ds\Vector::set ( int $index , mixed $value )
更新给定索引处的值。
参数
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
)
← Ds\Vector::rotate
Ds\Vector::shift →