Collection
PHP Manual

Ds\Collection::toArray

(PECL ds >= 1.0.0)

Ds\Collection::toArray Converts the collection to an tableau.

Description

abstract public array Ds\Collection::toArray ( void )

Converts the collection to an tableau.

Note:

Casting to an tableau is not supported yet.

Liste de paramètres

Cette fonction ne contient aucun paramètre.

Valeurs de retour

An tableau containing all the values in the same order as the collection.

Exemples

Exemple #1 Ds\Collection::toArray() example

<?php
$collection 
= new \Ds\Vector([123]);

var_dump($collection->toArray());
?>

L'exemple ci-dessus va afficher quelque chose de similaire à :

array(3) {
  [0]=>
  int(1)
  [1]=>
  int(2)
  [2]=>
  int(3)
}

Collection
PHP Manual