ArrayObject::__construct
(no version information, might be only in CVS)
ArrayObject::__construct --
Description
void
ArrayObject::__construct ( array|object ar)
ArrayObject::__construct() construit un nouvel objet
tableau. Le paramètre input accepte
un tableau ou un autre objet ArrayObject.
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"
} |
|