PHP Ds\Queue toArray() Function
The Ds\Queue::toArray() Function in PHP is used to convert a Queue into an associative array in PHP. The values of the Queue are assigned to the array in the same order as they are present in the Queue.
Syntax:
array public Ds\Queue::toArray ( void )
Parameters: This function does not accepts any parameters.
Return Value: This function converts the Queue into an associative array and returns the array.
Below program illustrate the Ds\Queue::toArray() Function in PHP:
<?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
)
Reference: http://php.net/manual/en/ds-queue.toarray.php
Recommended Posts:
- PHP Ds\Set toArray() Function
- PHP Ds\Map toArray() Function
- PHP | Ds\Pair toArray() Function
- PHP | Ds\Deque toArray() Function
- PHP | Ds\Stack toArray() Function
- PHP | SplFixedArray toArray() Function
- PHP | Ds\Collection toArray() Function
- PHP Ds\PriorityQueue toArray() Function
- PHP | Ds\Vector toArray() Function
- How to get the function name inside a function in PHP ?
- PHP | Ds\Set first() Function
- PHP | end() Function
- PHP | dir() Function
- PHP | abs() Function
- PHP | key() Function
If you like GeeksforGeeks and would like to contribute, you can also write an article using contribute.geeksforgeeks.org or mail your article to contribute@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.
Please Improve this article if you find anything incorrect by clicking on the "Improve Article" button below.

