當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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



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 remove() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。