PHP ArrayIterator __construct() Function Last Updated : 27 Mar, 2023 Comments Improve Suggest changes Like Article Like Report The ArrayIterator::__construct() function is an inbuilt function in PHP which is used to construct an ArrayIterator. Syntax: public ArrayIterator::__construct( mixed $array, int $flags = 0 ) Parameters: This function accepts two parameters as mentioned above and described below: $array: This parameter holds the array or array of object iterator.$flag: This parameter holds the flat to control the behavior of the ArrayIterator object. Return Value: This function returns the ArrayIterator object. Below programs illustrate the ArrayIterator::__construct() function in PHP: Program 1: php <?php // Declare an ArrayIterator $arrItr = new ArrayIterator( array('G', 'e', 'e', 'k', 's', 'f', 'o', 'r'), ArrayIterator::ARRAY_AS_PROPS ); // Display the elements while($arrItr->valid()) { echo $arrItr->current(); $arrItr->next(); } ?> Output:Geeksfor Program 2: php <?php // Declare an ArrayIterator $arrItr = new ArrayIterator( array("Geeks", "for", "Geeks"), ArrayIterator::STD_PROP_LIST ); // Display the elements foreach ($arrItr as $key => $val) { echo $key . " => " . $val . "\n"; } ?> Output:0 => Geeks 1 => for 2 => Geeks Reference: https://www.php.net/manual/en/arrayiterator.construct.php Create Quiz Comment J jit_t Follow 0 Improve J jit_t Follow 0 Improve Article Tags : Web Technologies PHP PHP-function Explore BasicsPHP Syntax4 min readPHP Variables5 min readPHP | Functions6 min readPHP Loops4 min readArrayPHP Arrays5 min readPHP Associative Arrays4 min readMultidimensional arrays in PHP5 min readSorting Arrays in PHP4 min readOOPs & InterfacesPHP Classes2 min readPHP | Constructors and Destructors5 min readPHP Access Modifiers4 min readMultiple Inheritance in PHP4 min readMySQL DatabasePHP | MySQL Database Introduction4 min readPHP Database connection2 min readPHP | MySQL ( Creating Database )3 min readPHP | MySQL ( Creating Table )3 min readPHP AdvancePHP Superglobals6 min readPHP | Regular Expressions12 min readPHP Form Handling4 min readPHP File Handling4 min readPHP | Uploading File3 min readPHP Cookies9 min readPHP | Sessions7 min read Like