downloads | documentation | faq | getting help | mailing lists | reporting bugs | php.net sites | links | my php.net 
search for in the  

<ArrayObject::appendArrayObject::count>
Last updated: Thu, 26 Jun 2008

ArrayObject::__construct

(PHP 5)

ArrayObject::__construct — Construct 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 noteadd a note User Contributed Notes
Construct a new array object
There are no user contributed notes for this page.




<ArrayObject::appendArrayObject::count>
Last updated: Thu, 26 Jun 2008
show source | credits | sitemap | contact | advertising | mirror sites
Copyright © 2001-2005 The PHP Group
All rights reserved.
This unofficial mirror is operated at: http://phpbuilder.com/
Last updated: Tue Nov 1 20:20:59 2005 EST
Columns / Articles | Tips / Quickies | News | News Linking and RSS Feeds | Shared Code Library
Mail Archives | Support / Discussion Forums | Get Started! Links | Contribute! | Docs