Ds\Vector::remove() 函数可以通过索引删除和返回一个值。
用法
public mixed Ds\Vector::remove( int $index )
Ds\Vector::remove() 函数可以返回被删除的值。
如果索引无效,Ds\Vector::remove() 函数可以抛出 OutOfRangeException。
例子1
<?php
$vector = new \Ds\Vector([1, 2, 3, 4, 5, 6]);
echo("The vector elements:\n");
print_r($vector);
echo("\n The last element of vector:\n");
var_dump($vector->remove(2));
?>
例子2
<?php
$vector = new \Ds\Vector(["Tutorials", "Point", "Tutorix"]);
echo("The vector elements:\n");
print_r($vector);
echo("\n The last element of vector:\n");
var_dump($vector->remove(2));
?>
相关用法
- PHP Ds Vector reduce()用法及代码示例
- PHP Ds Vector reverse()用法及代码示例
- PHP Ds Vector reversed()用法及代码示例
- PHP Ds Vector rotate()用法及代码示例
- PHP Ds Vector allocate()用法及代码示例
- PHP Ds Vector get()用法及代码示例
- PHP Ds Vector count()用法及代码示例
- PHP Ds Vector sum()用法及代码示例
- PHP Ds Vector sorted()用法及代码示例
- PHP Ds Vector set()用法及代码示例
- PHP Ds Vector unshift()用法及代码示例
- PHP Ds Vector last()用法及代码示例
- PHP Ds Vector push()用法及代码示例
- PHP Ds Vector first()用法及代码示例
- PHP Ds Vector jsonSerialize()用法及代码示例
- PHP Ds Vector insert()用法及代码示例
- PHP Ds Vector construct()用法及代码示例
- PHP Ds Vector contains()用法及代码示例
- PHP Ds Vector toArray()用法及代码示例
- PHP Ds Vector merge()用法及代码示例
注:本文由纯净天空筛选整理自 PHP - Ds Vector remove() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。