当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


PHP Ds\Vector remove()用法及代码示例


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

用法:

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

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


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

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

以下示例程序旨在说明PHP中的Ds \ Vector::remove()函数:

程序1:

<?php 
  
// Declare new vector 
$vect = new \Ds\Vector(["geeks", "for", 
            "geeks", "DataStructures"]); 
  
echo("Vector Elements\n"); 
  
// Display the Vector elements 
print_r($vect); 
  
echo("\nLast element of the vector:\n"); 
  
// Use remove() function to remove  
// value at index 3 and return it 
var_dump($vect->remove(3)); 
  
?>

输出:

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

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

程序2:

<?php 
  
// Declare new vector 
$vect = new \Ds\Vector([1, 2, 3, 4, 5, 6]); 
  
echo("Vector Elements\n"); 
  
// Display the Vector elements 
print_r($vect); 
  
echo("\nLast element of the vector:\n"); 
  
// Use remove() function to remove  
// value at index 3 and return it 
var_dump($vect->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.net/manual/en/ds-vector.remove.php



相关用法


注:本文由纯净天空筛选整理自barykrg大神的英文原创作品 PHP | Ds\Vector remove() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。