SplObjectStorage::count
(PHP 5 >= 5.1.0, PHP 7, PHP 8)
SplObjectStorage::count — Returns the number of objects in the storage
说明
Counts the number of objects in the storage.
参数
mode
-
If the optional
mode
parameter is set toCOUNT_RECURSIVE
(or 1), SplObjectStorage::count() will recursively count the storage.
返回值
The number of objects in the storage.
示例
示例 #1 SplObjectStorage::count() example
<?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)
参见
- SplObjectStorage::attach() - Adds an object in the storage
- SplObjectStorage::detach() - Removes an object from the storage
+添加备注
用户贡献的备注
此页面尚无用户贡献的备注。
备份地址:http://www.lvesu.com/blog/php/splobjectstorage.count.php