SplFixedArray::__construct
(PHP 5 >= 5.3.0, PHP 7, PHP 8)
SplFixedArray::__construct — 新しい固定長配列を作成する
説明
新しい固定長配列を作成します。要素の数は size
と等しく、値はすべて null
となります。
エラー / 例外
size
が負の数である場合に ValueError をスローします。
変更履歴
バージョン | 説明 |
---|---|
8.0.0 |
size が負の数である場合に
ValueError をスローするようになりました。
これより前のバージョンでは、
InvalidArgumentException
をスローしていました。
|
例
例1 SplFixedArray::__construct() の例
<?php
$array = new SplFixedArray(5);
$array[1] = 2;
$array[4] = "foo";
foreach($array as $v) {
var_dump($v);
}
?>
上の例の出力は以下となります。
NULL int(2) NULL NULL string(3) "foo"
+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