ArrayObject::getIteratorClass

(PHP 5 >= 5.1.0, PHP 7)
Gets the iterator classname for the ArrayObject.
public string ArrayObject::getIteratorClass ( void )

Gets the class name of the array iterator that is used by ArrayObject::getIterator().

Returns:

Returns the iterator class name that is used to iterate over this object.

Examples:
ArrayObject::getIteratorClass() example
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?php
// Custom ArrayIterator (inherits from ArrayIterator)
class MyArrayIterator extends ArrayIterator {
    // custom implementation
}
 
// Array of available fruits
$fruits array("lemons" => 1, "oranges" => 4, "bananas" => 5, "apples" => 10);
 
$fruitsArrayObject new ArrayObject($fruits);
 
// Get the current class name
$className $fruitsArrayObject->getIteratorClass();
var_dump($className);
 
// Set new classname
$fruitsArrayObject->setIteratorClass('MyArrayIterator');
 
// Get the new iterator classname
$className $fruitsArrayObject->getIteratorClass();
var_dump($className);
?>

The above example will output:

string(13) "ArrayIterator"
string(15) "MyArrayIterator"
See also:

ArrayObject::setIteratorClass -

doc_php
2025-01-10 15:47:30
Comments
Leave a Comment

Please login to continue.