You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
401 B
PHP
15 lines
401 B
PHP
<?php
|
|
// $Id: spl_examples.php,v 1.1 2006/02/05 19:35:31 lastcraft Exp $
|
|
|
|
class IteratorImplementation implements Iterator {
|
|
function current() { }
|
|
function next() { }
|
|
function key() { }
|
|
function valid() { }
|
|
function rewind() { }
|
|
}
|
|
|
|
class IteratorAggregateImplementation implements IteratorAggregate {
|
|
function getIterator() { }
|
|
}
|
|
?>
|