The RecursiveArrayIterator class

(PHP 5 >= 5.1.0, PHP 7, PHP 8)

简介

This iterator allows for unsetting and modifying values and keys while iterating over arrays and objects, in the same way as the ArrayIterator. Additionally, it is possible to iterate over the current iterator entry.

类摘要

class RecursiveArrayIterator extends ArrayIterator implements RecursiveIterator {
/* 继承的常量 */
/* 常量 */
public const int CHILD_ARRAYS_ONLY;
/* 方法 */
public hasChildren(): bool
/* 继承的方法 */
public ArrayIterator::__construct(array|object $array = [], int $flags = 0)
public ArrayIterator::seek(int $offset): void
}

预定义常量

RecursiveArrayIterator Flags

RecursiveArrayIterator::CHILD_ARRAYS_ONLY

Treat only arrays (not objects) as having children for recursive iteration.

目录