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:
Reference:
https://www.php.net/manual/en/arrayobject.offsetget.php