La función SplObjectStorage::count() es una función incorporada en PHP que se usa para contar la cantidad de objetos almacenados.
Sintaxis:
int SplObjectStorage::count()
Parámetros: Esta función no contiene ningún parámetro.
Valor devuelto: esta función devuelve el número de objetos almacenados.
Los siguientes programas ilustran la función SplObjectStorage::count() en PHP:
Programa 1:
<?php // Declare Empty SplObjectStorage $gfg = new SplObjectStorage(); $gfg1 = new StdClass; $gfg2 = new StdClass; $gfg3 = new StdClass; // Add object to SplObjectStorage class $gfg->attach($gfg1); $gfg->attach($gfg2); $gfg->attach($gfg3); // Use count() function to count object var_dump($gfg->count()); ?>
Producción:
int(3)
Programa 2:
<?php // Declare Empty SplObjectStorage $gfg = new SplObjectStorage(); $gfg1 = new StdClass; $gfg2 = new StdClass; $gfg3 = new StdClass; // Add object to SplObjectStorage class $gfg->attach($gfg1); $gfg->attach($gfg2); $gfg->attach($gfg3); // Use count in different way // Passing object as parameter var_dump(count($gfg)); ?>
Producción:
int(3)
Referencia: https://www.php.net/manual/en/splobjectstorage.count.php