PHP
downloads | documentation | faq | getting help | mailing lists | reporting bugs | php.net sites | links | conferences | my php.net

search for in the

ArrayObject::count> <ArrayObject::append
Last updated: Fri, 29 Aug 2008

view this page in

ArrayObject::__construct

(PHP 5)

ArrayObject::__constructConstruit un nouvel objet tableau

Description

ArrayObject::__construct ( mixed $input )

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"
}



add a note add a note User Contributed Notes
ArrayObject::__construct
There are no user contributed notes for this page.

ArrayObject::count> <ArrayObject::append
Last updated: Fri, 29 Aug 2008
 
 
show source | credits | sitemap | contact | advertising | mirror sites