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
相關用法
- PHP Ds\Map toArray()用法及代碼示例
- PHP Ds\Set toArray()用法及代碼示例
- PHP SplFixedArray toArray()用法及代碼示例
- PHP Ds\Vector toArray()用法及代碼示例
- PHP Ds\PriorityQueue toArray()用法及代碼示例
- PHP Ds\Pair toArray()用法及代碼示例
- PHP Ds\Collection toArray()用法及代碼示例
- PHP Ds\Stack toArray()用法及代碼示例
- PHP Ds\Deque toArray()用法及代碼示例
- PHP Ds\Set xor()用法及代碼示例
- PHP Ds\Map put()用法及代碼示例
- PHP each()用法及代碼示例
- PHP pow( )用法及代碼示例
- PHP tan( )用法及代碼示例
注:本文由純淨天空篩選整理自gopaldave大神的英文原創作品 PHP Ds\Queue toArray() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。