CallbackFilterIterator::__construct

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

CallbackFilterIterator::__constructフィルタリングしたイテレータを別のイテレータから作成する

説明

public CallbackFilterIterator::__construct(Iterator $iterator, callable $callback)

callback でフィルタリングしたイテレータを作って、 どのアイテムを受け付けてどれを拒否するかを決めます。

パラメータ

iterator

フィルタリングするイテレータ。

callback

コールバック。現在のアイテムを受け付ける場合に true、 拒否する場合に false を返します。 を参照ください。

任意の callable 値を指定できます。

参考

add a note add a note

User Contributed Notes

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