ArrayObject::getIteratorClass

(PHP 5 >= 5.1.0)

ArrayObject::getIteratorClassGets 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 the iterator class name that is used to iterate over this object.

Приклади

Приклад #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);
?>

Наведений вище приклад виведе:

string(13) "ArrayIterator"
string(15) "MyArrayIterator"

Прогляньте Також

add a note add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top