Friday, November 14, 2025
HomeLanguagesPHP SplObjectStorage offsetExists() Function

PHP SplObjectStorage offsetExists() Function

The SplObjectStorage::offsetExists() function is an inbuilt function in PHP which is used to check the object exist in storage or not.

Syntax: 

bool SplObjectStorage::offsetExists($object)

Parameters: This function accepts a single parameter $object which specifies the object to be checked.
Return Value: This function returns true if the object exists in storage otherwise return false.
Below programs illustrate the SplObjectStorage::offsetExists() function in PHP:

Program 1:  

php




<?php
  
// Create an empty SplObjectStorage
$str = new SplObjectStorage;
$obj = new StdClass;
  
// Attach $obj to $str 
$str->attach($obj);
  
// Print Result
var_dump($str->offsetExists($obj)); 
?>


Output: 

bool(true)

 

Program 2: 

php




<?php
  
// Create an Empty SplObjectStorage
$str = new SplObjectStorage();
   
$obj1 = new StdClass;
$obj2 = new StdClass;
$obj3 = new StdClass;
$obj4 = new StdClass;
  
// Attach only three objects
$str->attach($obj1, "GeksforGeeks");
$str->attach($obj2, "GFG");
$str->attach($obj3);
  
// Print result
var_dump($str->offsetExists($obj1)); 
var_dump($str->offsetExists($obj2)); 
var_dump($str->offsetExists($obj4)); 
var_dump($str->offsetExists($obj3)); 
  
?>


Output: 

bool(true)
bool(true)
bool(false)
bool(true)

 

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

RELATED ARTICLES

Most Popular

Dominic
32399 POSTS0 COMMENTS
Milvus
95 POSTS0 COMMENTS
Nango Kala
6765 POSTS0 COMMENTS
Nicole Veronica
11917 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11984 POSTS0 COMMENTS
Shaida Kate Naidoo
6889 POSTS0 COMMENTS
Ted Musemwa
7142 POSTS0 COMMENTS
Thapelo Manthata
6837 POSTS0 COMMENTS
Umr Jansen
6840 POSTS0 COMMENTS