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


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


Ds \ Deque::clear()函數是PHP中的內置函數,用於通過從Deque中刪除所有元素來清除Deque。

用法:

public Ds\Deque::clear( void ):void

參數:該函數不接受任何參數。


返回值:此函數不返回任何值。

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

程序1:

<?php 
  
// Declare deque of default size 
$deck = new \Ds\Deque([1, 2, 3, 4, 5, 6]); 
  
echo("Elements in the deck:\n"); 
  
// Display the Deque elements 
print_r($deck); 
  
// Use clear() function to clear the deque 
$deck->clear(); 
  
// Display the deque 
print_r($deck); 
  
?> 
輸出:
Elements in the deck:
Ds\Deque Object
(
    [0] => 1
    [1] => 2
    [2] => 3
    [3] => 4
    [4] => 5
    [5] => 6
)
Ds\Deque Object
(
)

程序2:

<?php 
  
// Declare deque of default size 
$deck = new \Ds\Deque(["geeks", "for", "geeks"]); 
  
echo("Elements in the Deque\n"); 
  
// Display the Deque elements 
print_r($deck); 
  
// Use clear() function to clear the deque 
$deck->clear(); 
  
echo("Alter clearing the elements\n"); 
// Display the deque 
print_r($deck); 
  
?> 
輸出:
Elements in the Deque
Ds\Deque Object
(
    [0] => geeks
    [1] => for
    [2] => geeks
)
Alter clearing the elements
Ds\Deque Object
(
)

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



相關用法


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