If Iterator::valid() returns false, the foreach() loop will be terminated.
(PHP 5, PHP 7, PHP 8)
Iterator::valid — Comprueba si la posición actual es válido
Este método se llama después de Iterator::rewind() y Iterator::next() para comprobar si la posición actual es válido.
Esta función no tiene parámetros.
If Iterator::valid() returns false, the foreach() loop will be terminated.
If your class implements also ArrayAccess interface, you could use as valid() body
function valid(){
return $this->offsetExists($this->position);
}