📜  PHP | Ds\Deque toArray()函数

📅  最后修改于: 2022-05-13 01:56:25.263000             🧑  作者: Mango

PHP | Ds\Deque toArray()函数

Ds\Deque::toArray()函数是PHP中的一个内置函数,用于将 Deque 转换为数组。数组元素的顺序与它们在 Deque 中的顺序相同。

句法:

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

参数:此函数不接受任何参数。

返回值:该函数以相同的顺序返回包含 Deque 的所有元素的数组。

下面的程序说明了PHP中的Ds\Deque::toArray()函数:

方案一:

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
)

方案二:

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。 PHP