Friday, September 5, 2025
HomeLanguagesPHP SplObjectStorage getinfo() Function

PHP SplObjectStorage getinfo() Function

The SplObjectStorage::getinfo() function is an inbuilt function in PHP that is used to get the data associated with the object by the current iterator position. 

Syntax:

mixed SplObjectStorage::getinfo()

Parameters: This function does not accept any parameter. 

Return Value: This function returns the object associated by the current iterator position. The below programs illustrate the SplObjectStorage::getinfo() function in PHP.

Program 1: 

php




<?php
  
// Create New Empty Storage Class
$str = new SplObjectStorage();
  
$obj1 = new StdClass;
  
$str->attach($obj1, "neveropen");
  
$str->rewind();
  
$object = $str->current(); 
      
// Get info into $data 
$data   = $str->getInfo();
      
// Print Result
var_dump($object);
var_dump($data);
  
?>


Output:

object(stdClass)#2 (0) {
}
string(12) "GeksforGeeks"

Program 2: 

php




<?php
// Create an Empty SplObjectStorage
$str = new SplObjectStorage();
  
$obj1 = new StdClass;
$obj2 = new StdClass;
$obj3 = new StdClass;
$obj4 = new StdClass;
  
$str->attach($obj1, "neveropen");
$str->attach($obj2, "GFG");
$str->attach($obj3);
$str->attach($obj4, "DSA");
  
$str->rewind();
  
// Iterate and print data on each index
while($str->valid()) {
    $index  = $str->key();
    $object = $str->current(); 
    $data   = $str->getInfo();
  
    var_dump($object);
    var_dump($data);
    $str->next();
}
?>


Output:

object(stdClass)#2 (0) {
}
string(12) "GeksforGeeks"
object(stdClass)#3 (0) {
}
string(3) "GFG"
object(stdClass)#4 (0) {
}
NULL
object(stdClass)#5 (0) {
}
string(3) "DSA"

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

RELATED ARTICLES

Most Popular

Dominic
32269 POSTS0 COMMENTS
Milvus
81 POSTS0 COMMENTS
Nango Kala
6636 POSTS0 COMMENTS
Nicole Veronica
11802 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11865 POSTS0 COMMENTS
Shaida Kate Naidoo
6752 POSTS0 COMMENTS
Ted Musemwa
7026 POSTS0 COMMENTS
Thapelo Manthata
6703 POSTS0 COMMENTS
Umr Jansen
6721 POSTS0 COMMENTS