Open In App

ArrayObject offsetGet() Function in PHP

Last Updated : 11 Jul, 2025
Comments
Improve
Suggest changes
Like Article
Like
Report
The offsetGet() function of the ArrayObject class in PHP is used to get the value present at a specific index at the ArrayObject. Syntax:
mixed offsetGet($index) 
Parameters: This function accepts a single parameter $index for which corresponding value will be returned. Return Value: This function returns the value present at the specified index in the ArrayObject. Below programs illustrate the above function: Program 1:
Output:
geeks99
geeks02
geeks100
Program 2:
Output:
1
2
Reference: https://www.php.net/manual/en/arrayobject.offsetget.php

Explore