📜  PHP | SplObjectStorage count()函数

📅  最后修改于: 2022-05-13 01:56:51.624000             🧑  作者: Mango

PHP | SplObjectStorage count()函数

SplObjectStorage::count()函数是PHP中的一个内置函数,用于计算存储中对象的数量。

句法:

int SplObjectStorage::count()

参数:此函数不包含任何参数。

返回值:此函数返回存储中的对象数。

下面的程序说明了PHP中的SplObjectStorage::count()函数:

方案一:

attach($gfg1);
$gfg->attach($gfg2);
$gfg->attach($gfg3);
  
// Use count() function to count object
var_dump($gfg->count());
?>
输出:
int(3)

方案二:

attach($gfg1);
$gfg->attach($gfg2);
$gfg->attach($gfg3);
  
// Use count in different way
// Passing object as parameter
var_dump(count($gfg));
?>
输出:
int(3)

参考: https://www. PHP.net/manual/en/splobjectstorage.count。 PHP