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


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


Ds \ Deque::remove()函數是PHP中的內置函數,用於刪除並返回索引值。

用法:

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

參數:該函數接受單個參數$index,該參數保存要返回和刪除其元素的Deque的索引。


返回值:此函數返回並刪除Deque中給定索引處的元素。

以下示例程序旨在說明PHP中的Ds \ Deque::remove()函數:

程序1:

<?php 
  
// Declare a deque 
$deck = new \Ds\Deque([10, 20, 30, 40, 50, 60]); 
  
echo("Elements of Deque\n"); 
  
// Display the Deque elements 
print_r($deck); 
  
echo("\nElement at index 2:"); 
  
// Use remove() function to remove the 
// element at index 2 and return it 
print_r($deck->remove(2)); 
  
?>
輸出:
Elements of Deque
Ds\Deque Object
(
    [0] => 10
    [1] => 20
    [2] => 30
    [3] => 40
    [4] => 50
    [5] => 60
)

Element at index 2:30

程序2:

<?php 
  
// Declare a deque 
$deck = new \Ds\Deque(["geeks", "for", "geeks"]); 
  
echo("Elements of Deque\n"); 
  
// Display the Deque elements 
print_r($deck); 
  
echo("\nElement at index 1:"); 
  
// Use remove() function to remove the 
// element at index 2 and return it 
print_r($deck->remove(1)); 
  
?>
輸出:
Elements of Deque
Ds\Deque Object
(
    [0] => geeks
    [1] => for
    [2] => geeks
)

Element at index 1:for

參考: http://php.net/manual/en/ds-deque.remove.php



相關用法


注:本文由純淨天空篩選整理自barykrg大神的英文原創作品 PHP | Ds\Deque remove() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。