Sunday, November 16, 2025
HomeLanguagesPHP SplObjectStorage count() Function

PHP SplObjectStorage count() Function

The SplObjectStorage::count() function is an inbuilt function in PHP which is used to count the number of objects in storage.

Syntax:

int SplObjectStorage::count()

Parameters: This function does not contains any parameter.

Return Value: This function returns number of objects in storage.

Below programs illustrate the SplObjectStorage::count() function in PHP:

Program 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());
?>


Output:

int(3)

Program 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));
?>


Output:

int(3)

Reference: https://www.php.net/manual/en/splobjectstorage.count.php

Whether you’re preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape, neveropen Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we’ve already empowered, and we’re here to do the same for you. Don’t miss out – check it out now!
RELATED ARTICLES

4 COMMENTS

Most Popular

Dominic
32402 POSTS0 COMMENTS
Milvus
95 POSTS0 COMMENTS
Nango Kala
6769 POSTS0 COMMENTS
Nicole Veronica
11919 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11990 POSTS0 COMMENTS
Shaida Kate Naidoo
6897 POSTS0 COMMENTS
Ted Musemwa
7150 POSTS0 COMMENTS
Thapelo Manthata
6851 POSTS0 COMMENTS
Umr Jansen
6843 POSTS0 COMMENTS