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


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


Ds \ Deque::toArray()函數是PHP中的內置函數,用於將Deque轉換為數組。數組中的元素將與Deque中的順序相同。

用法:

public Ds\Deque::toArray( void ):array

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


返回值:此函數返回以相同順序包含Deque的所有元素的數組。

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

程序1:

<?php 
  
// Declare a deque 
$deck = new \Ds\Deque([5, 6, 3, 2, 7, 1]); 
  
echo("Elements of Deque\n"); 
  
// Display the Deque elements 
print_r($deck); 
  
echo("Array elements\n"); 
  
// Use toArray() function to 
// convert Deque into array 
print_r($deck->toArray()); 
  
?>
輸出:
Elements of Deque
Ds\Deque Object
(
    [0] => 5
    [1] => 6
    [2] => 3
    [3] => 2
    [4] => 7
    [5] => 1
)
Array elements
Array
(
    [0] => 5
    [1] => 6
    [2] => 3
    [3] => 2
    [4] => 7
    [5] => 1
)

程序2:

<?php 
  
// Declare a deque 
$deck = new \Ds\Deque(["geeks", "for", 
            "geeks", "data structures"]); 
  
echo("Elements of Deque\n"); 
  
// Display the Deque elements 
var_dump($deck); 
  
echo("Array elements\n"); 
  
// Use toArray() function to 
// convert Deque into array 
var_dump($deck->toArray()); 
  
?>
輸出:
Elements of Deque
object(Ds\Deque)#1 (4) {
  [0]=>
  string(5) "geeks"
  [1]=>
  string(3) "for"
  [2]=>
  string(5) "geeks"
  [3]=>
  string(15) "data structures"
}
Array elements
array(4) {
  [0]=>
  string(5) "geeks"
  [1]=>
  string(3) "for"
  [2]=>
  string(5) "geeks"
  [3]=>
  string(15) "data structures"
}

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



相關用法


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