VOOZH about

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

⇱ ArrayObject getIteratorClass() Function in PHP - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

ArrayObject getIteratorClass() Function in PHP

Last Updated : 11 Jul, 2025
The getIteratorClass() function of the ArrayObject class in PHP is used to get the classname of the iterator used to iterate over this ArrayObject. Syntax:
string getIteratorClass() 
Parameters: This function does not accepts any parameters. Return Value: This function returns the iterator classname for this ArrayObject. Below programs illustrate the above function: Program 1:
Output:
ArrayIterator
Program 2:
Output:
SampleIterator
Reference: https://www.php.net/manual/en/arrayobject.getiteratorclass.php
Comment