Sunday, June 14, 2026
HomeLanguagesPHP ArrayIterator __construct() Function

PHP ArrayIterator __construct() Function

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

Whether you’re preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape, neveropen Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we’ve already empowered, and we’re here to do the same for you. Don’t miss out – check it out now!
RELATED ARTICLES

Most Popular

Dominic
32515 POSTS0 COMMENTS
Milvus
131 POSTS0 COMMENTS
Nango Kala
6897 POSTS0 COMMENTS
Nicole Veronica
12013 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12109 POSTS0 COMMENTS
Shaida Kate Naidoo
7019 POSTS0 COMMENTS
Ted Musemwa
7262 POSTS0 COMMENTS
Thapelo Manthata
6976 POSTS0 COMMENTS
Umr Jansen
6964 POSTS0 COMMENTS