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


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。