Manuel PHP
ArrayObject::__construct
(PHP 5)
ArrayObject::__construct — Construit un nouvel objet tableau
Liste de paramètres
- input
-
Le paramètre input accepte un tableau ou un autre objet ArrayObject.
Valeurs de retour
Aucune valeur n'est retournée.
Exemples
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"
}
Remonter 
