SplObjectStorage::count
(PHP 5 >= 5.1.0, PHP 7, PHP 8)
SplObjectStorage::count — ストレージ内のオブジェクトの数を返す
パラメータ
mode
-
オプションの
mode
引数がCOUNT_RECURSIVE
(または 1) に設定された場合、 SplObjectStorage::count() は再帰的にストレージを操作して数えます。
戻り値
ストレージ内のオブジェクトの数を返します。
例
例1 SplObjectStorage::count() の例
<?php
$s = new SplObjectStorage();
$o1 = new stdClass;
$o2 = new stdClass;
$s->attach($o1);
$s->attach($o2);
$s->attach($o1);
var_dump($s->count());
var_dump(count($s));
?>
上の例の出力は、 たとえば以下のようになります。
int(2) int(2)
+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