ArrayObject::__construct
(PHP 5, PHP 7, PHP 8)
ArrayObject::__construct — 新規配列オブジェクトを生成する
説明
public ArrayObject::__construct(array|object
$array
= [], int $flags
= 0, string $iteratorClass
= ArrayIterator::class)新規配列オブジェクトを生成します。
パラメータ
array
-
array
には、 配列あるいはオブジェクトを指定することができます。 flags
-
ArrayObject オブジェクトの振る舞いを制御するフラグ。 ArrayObject::setFlags() を参照ください。
iteratorClass
-
ArrayObject オブジェクトの反復処理に使用するクラスを指定します。 ここで指定するクラスは、 ArrayIterator を実装していなければなりません。
例
例1 ArrayObject::__construct() の例
<?php
$array = array('1' => 'one',
'2' => 'two',
'3' => 'three');
$arrayobject = new ArrayObject($array);
var_dump($arrayobject);
?>
上の例の出力は以下となります。
object(ArrayObject)#1 (3) { [1]=> string(3) "one" [2]=> string(3) "two" [3]=> string(5) "three" }
+add a note
User Contributed Notes
There are no user contributed notes for this page.
↑ and ↓ to navigate •
Enter to select •
Esc to close
Press Enter without
selection to search using Google