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


PHP Ds\Queue clear()用法及代码示例


PHP中的Ds \ Queue::clear()函数用于清除Queue实例中的所有元素。此函数仅清除实例而不删除它。

用法:

void public Ds\PriorityQueue::clear ( void )

参数:该函数不接受任何参数。


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

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

程序1:

<?php  
  
// Declare new Queue  
$q = new \Ds\Queue();  
  
// Add elements to the Queue  
$q->push("One"); 
$q->push("Two"); 
$q->push("Three"); 
  
echo "Initial Queue:\n"; 
// Display the Queue  
print_r($q); 
  
// clear the Queue  
$q->clear(); 
  
echo "\nQueue after clearing:\n"; 
print_r($q); 
  
?> 
输出:
Initial Queue:
Ds\Queue Object
(
    [0] => One
    [1] => Two
    [2] => Three
)

Queue after clearing:
Ds\Queue Object
(
)

程序2:

<?php  
  
// Declare new Queue  
$q = new \Ds\Queue();  
  
// Add elements to the Queue  
$q->push("Geeks"); 
$q->push("for"); 
$q->push("Geeks"); 
  
echo "Initial Queue:\n"; 
// Display the Queue  
print_r($q); 
  
// clear the Queue  
$q->clear(); 
  
echo "\nQueue after clearing:\n"; 
print_r($q); 
  
?> 
输出:
Initial Queue:
Ds\Queue Object
(
    [0] => Geeks
    [1] => for
    [2] => Geeks
)

Queue after clearing:
Ds\Queue Object
(
)

参考: http://php.net/manual/en/ds-queue.clear.php



相关用法


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