Ds\Vector::remove
Ds\Vector::remove
(PECL ds >= 1.0.0)
Ds \ Vector :: remove - 通过索引删除并返回一个值。
描述
public mixed Ds\Vector::remove ( int $index )
通过索引删除并返回一个值。
参数
index
要删除的值的索引。
返回值
已删除的值。
错误/异常
如果索引无效则为OutOfRangeException。
例子
示例#1 Ds \ Vector :: remove()示例
<?php
$vector = new \Ds\Vector(["a", "b", "c"]
var_dump($vector->remove(1)
var_dump($vector->remove(0)
var_dump($vector->remove(0)
?>
上面的例子会输出类似于:
string(1) "b"
string(1) "a"
string(1) "c"
← Ds\Vector::reduce
Ds\Vector::reverse →