Open In App

ArrayObject getIteratorClass() Function in PHP

Last Updated : 22 Mar, 2019
Summarize
Comments
Improve
Suggest changes
Share
Like Article
Like
Report
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: http://php.net/manual/en/arrayobject.getiteratorclass.php

Similar Reads