(PHP 5)
ArrayObject::__construct — Construit un nouvel objet tableau
Le paramètre input accepte un tableau ou un autre objet ArrayObject.
Aucune valeur n'est retournée.
Exemple #1 Exemple avec ArrayObject::__construct()
<?php
$array = array('1' => 'one',
'2' => 'two',
'3' => 'three');
$arrayobject = new ArrayObject($array);
var_dump($arrayobject);
?>
L'exemple ci-dessus va afficher :
object(ArrayObject)#1 (3) { [1]=> string(3) "one" [2]=> string(3) "two" [3]=> string(5) "three" }