Iterator::valid
(PHP 5, PHP 7, PHP 8)
Iterator::valid — 現在位置が有効かどうかを調べる
説明
このメソッドは Iterator::rewind() および Iterator::next() の後にコールされ、 現在の位置が有効かどうかを調べます。
パラメータ
この関数にはパラメータはありません。
+add a note
User Contributed Notes 2 notes
seva dot lapsha at gmail dot com ¶
15 years ago
If Iterator::valid() returns false, the foreach() loop will be terminated.
Voitcus at gmail dot com ¶
11 years ago
If your class implements also ArrayAccess interface, you could use as valid() body
function valid(){
return $this->offsetExists($this->position);
}
↑ and ↓ to navigate •
Enter to select •
Esc to close
Press Enter without
selection to search using Google