📜  PHP | SplObjectStorage count()函数(1)

📅  最后修改于: 2023-12-03 15:18:25.767000             🧑  作者: Mango

PHP | SplObjectStorage count() 函数

介绍

SplObjectStorage count() 函数用于获取 SplObjectStorage 对象中元素的数量。

语法
public SplObjectStorage::count ( void ) : int
参数

无。

返回值

返回 SplObjectStorage 对象中元素的数量。

示例

下面的示例演示如何使用 count() 函数获取 SplObjectStorage 对象中元素的数量。

$storage = new SplObjectStorage();

$obj1 = new stdClass();
$obj2 = new stdClass();

$storage->attach($obj1);
$storage->attach($obj2);

echo $storage->count(); // 输出 2
参考