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


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