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


PHP Ds\Queue copy()用法及代碼示例


PHP中的Ds \ Queue::copy()函數用於創建特定Queue實例的淺拷貝。此函數不會影響現有的Queue實例,它隻是創建Queue的淺拷貝並返回它。

用法:

Ds\Queue public Ds\Queue::copy ( void )

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


返回值:此函數創建現有Queue實例的淺拷貝並返回它。

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

程序1:

<?php  
  
// Declare new Queue   
$q = new \Ds\Queue();  
  
// Add elements to the Queue  
$q->push("One"); 
$q->push("Two"); 
$q->push("Three"); 
  
// Create copy of this Queue  
// instance and print it 
print_r($q->copy()); 
  
?> 
輸出:
Ds\Queue Object
(
    [0] => One
    [1] => Two
    [2] => Three
)

程序2:

<?php  
  
// Declare new Queue   
$q = new \Ds\Queue();  
  
// Add elements to the Queue  
$q->push("Geeks"); 
$q->push("for"); 
$q->push("Geeks"); 
  
// Create copy of this Queue  
// instance and print it 
print_r($q->copy()); 
  
?> 
輸出:
Ds\Queue Object
(
    [0] => Geeks
    [1] => for
    [2] => Geeks
)

參考:http://php.net/manual/en/ds-priorityqueue.copy.php



相關用法


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