XRL  latest
Simple XML-RPC Library (both client and server)
Iterator.php
1 <?php
2 
11 interface Iterator {
21  public function current();
22 
35  public function key();
36 
46  public function next();
47 
59  public function rewind();
60 
78  public function valid();
79 }
Interface for external iterators or objects that can be iterated themselves internally.
Definition: Iterator.php:11