iterator_countイテレータにある要素をカウントする 説明
int iterator_count(Traversablearray
$iterator )
イテレータにある要素をカウントします。
iterator_count は、
パラメータ
戻り値
変更履歴
例
例1 iterator_count の例
上の例の出力は以下となります。 int(4) 例2 iterator_count で位置を変更する例
上の例の出力は以下となります。 string(3) "one" int(3) NULL 例3 foreach ループ内での iterator_count
上の例の出力は以下となります。 0: one (3) |