(PHP 5 >= 5.1.0, PHP 7, PHP 8)
ArrayObject::getIteratorClass — Gets the iterator classname for the ArrayObject
Gets the class name of the array iterator that is used by ArrayObject::getIterator().
This function has no parameters.
Returns the iterator class name that is used to iterate over this object.
Example #1 ArrayObject::getIteratorClass() example
<?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"
Follow Lee on X/Twitter - Father, Husband, Serial builder creating AI, crypto, games & web tools. We are friends :) AI Will Come To Life!
Check out: eBank.nz (Art Generator) |
Netwrck.com (AI Tools) |
Text-Generator.io (AI API) |
BitBank.nz (Crypto AI) |
ReadingTime (Kids Reading) |
RewordGame |
BigMultiplayerChess |
WebFiddle |
How.nz |
Helix AI Assistant