Описание
public array Ds\Queue::toArray
( void
)
Converts the queue to an array.
Замечание:
Casting to an array is not supported yet.
Замечание:
This method is not destructive.
Список параметров
У этой функции нет параметров.
Возвращаемые значения
An array containing all the values in the same order as the queue.
Примеры
Пример #1 Ds\Queue::toArray() example
<?php
$queue = new \Ds\Queue([1, 2, 3]);
var_dump($queue->toArray());
?>
Результатом выполнения данного примера будет что-то подобное:
array(3) { [0]=> int(1) [1]=> int(2) [2]=> int(3) }
Коментарии
404 Not Found