public function FastPriorityQueue::toArray in Zircon Profile 8.0
Same name and namespace in other branches
- 8 vendor/zendframework/zend-stdlib/src/FastPriorityQueue.php \Zend\Stdlib\FastPriorityQueue::toArray()
Serialize to an array
Array will be priority => data pairs
Return value
array
File
- vendor/
zendframework/ zend-stdlib/ src/ FastPriorityQueue.php, line 249
Class
- FastPriorityQueue
- This is an efficient implementation of an integer priority queue in PHP
Namespace
Zend\StdlibCode
public function toArray() {
$array = [];
foreach (clone $this as $item) {
$array[] = $item;
}
return $array;
}