RecursiveIteratorIterator::getSubIterator

(PHP 5, PHP 7, PHP 8)

RecursiveIteratorIterator::getSubIterator現在の有効なサブイテレータを取得する

説明

public RecursiveIteratorIterator::getSubIterator(?int $level = null): ?RecursiveIterator
警告

この関数は、 現在のところ詳細な情報はありません。引数のリストのみが 記述されています。

パラメータ

level

戻り値

成功時に、現在の有効なサブイテレータを返します。 失敗時に null を返します。

変更履歴

バージョン 説明
8.0.0 level は、nullable になりました。

add a note

User Contributed Notes 1 note

up
2
lovePhp
5 years ago
Please document this method. I have found a use for it and would love to better understand how it works. TY : )
To Top