HH\Vector::toArray
Returns an array
containing the values from the current Vector
public function toArray(): array<Tv>;
This method is interchangeable with toValuesArray()
.
Returns
array<Tv>
- Anarray
containing the values from the currentVector
.
Examples
$v = Vector {'red', 'green', 'blue', 'yellow'};
$array = $v->toArray();
var_dump(is_array($array));
var_dump($array);
bool(true)
array(4) {
[0]=>
string(3) "red"
[1]=>
string(5) "green"
[2]=>
string(4) "blue"
[3]=>
string(6) "yellow"
}