Ds\Collection::toArray
PHP function
Edit on GitHub ✎
(PECL ds >= 1.0.0)
Converts the collection to an Array
Description
Ds\Collection::toArray(): array
Converts the collection to an Array.
Note
Casting to an Array is not supported yet.
Parameters Parameters
Return Values
An Array containing all the values in the same order as the collection.
Examples
Ds\Collection::toArray() example
php
<?php
$collection = new \Ds\Vector([1, 2, 3]);
var_dump($collection->toArray());
?>The above example will output something similar to:
output
array(3) {
[0]=>
int(1)
[1]=>
int(2)
[2]=>
int(3)
}