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


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


PHP中的Ds \ Queue::toArray()函數用於將Queue轉換為PHP中的關聯數組。隊列的值以與隊列中存在的順序相同的順序分配給數組。

用法:

array public Ds\Queue::toArray ( void ) 

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


返回值:此函數將Queue轉換為關聯數組並返回該數組。

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

<?php  
  
// Declare new Queue  
$q = new \Ds\Queue();  
  
// Add elements to the Queue  
$q->push("One", 1); 
$q->push("Two", 2); 
$q->push("Three", 3); 
  
echo "The equivalent array is:\n"; 
print_r($q->toArray());
輸出:
The equivalent array is:
Array
(
    [0] => One
    [1] => 1
    [2] => Two
    [3] => 2
    [4] => Three
    [5] => 3
)

參考: http://php.net/manual/en/ds-queue.toarray.php



相關用法


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