VOOZH about

URL: https://www.geeksforgeeks.org/php/arrayobject-offsetget-function-in-php/

⇱ ArrayObject offsetGet() Function in PHP - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

ArrayObject offsetGet() Function in PHP

Last Updated : 11 Jul, 2025
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
Comment