ArrayObject::getIterator

(PHP 5, PHP 7, PHP 8)

ArrayObject::getIteratorCreate a new iterator from an ArrayObject instance

说明

public ArrayObject::getIterator(): Iterator

Create a new iterator from an ArrayObject instance.

参数

此函数没有参数。

返回值

An iterator from an ArrayObject.

范例

示例 #1 ArrayObject::getIterator() example

<?php
$array
= array('1' => 'one',
'2' => 'two',
'3' => 'three');

$arrayobject = new ArrayObject($array);

$iterator = $arrayobject->getIterator();

while(
$iterator->valid()) {
echo
$iterator->key() . ' => ' . $iterator->current() . "\n";

$iterator->next();
}
?>

以上例程会输出:

1 => one
2 => two
3 => three

add a note

User Contributed Notes

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