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, 26 Sep 2008

view this page in

ArrayObject::__construct

(PHP 5)

ArrayObject::__constructConstruct a new array object

Description

ArrayObject::__construct ( mixed $input )

This constructs a new array object.

Parameters

input

The input parameter accepts an array or another ArrayObject.

Return Values

No value is returned.

Examples

Example #1 ArrayObject::__construct() example

<?php
$array 
= array('1' => 'one',
               
'2' => 'two',
               
'3' => 'three');

$arrayobject = new ArrayObject($array);

var_dump($arrayobject);
?>

The above example will output:

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, 26 Sep 2008
 
 
show source | credits | stats | sitemap | contact | advertising | mirror sites