📜  PHP | Ds\Vector remove()函数

📅  最后修改于: 2022-05-13 01:56:21.406000             🧑  作者: Mango

PHP | Ds\Vector remove()函数

Ds\Vector::remove()函数是PHP中的一个内置函数,用于从索引中删除值并返回它。

句法:

public Ds\Vector::remove( $index ) : mixed

参数:此函数接受单个参数$index ,它保存要删除元素的索引。

返回值:此函数返回已删除的值。

异常:如果给定索引超出范围或无效,此函数将抛出OutOfRangeException

下面的程序说明了PHP中的 Ds\Vector::remove()函数:

方案一:

remove(3));
  
?>

输出:

Vector Elements
Ds\Vector Object
(
    [0] => geeks
    [1] => for
    [2] => geeks
    [3] => DataStructures
)

Last element of the vector: 
string(14) "DataStructures"

方案二:

remove(3));
  
?>

输出:

Vector Elements
Ds\Vector Object
(
    [0] => 1
    [1] => 2
    [2] => 3
    [3] => 4
    [4] => 5
    [5] => 6
)

Last element of the vector: 
int(4)

参考: http: PHP。 PHP