Search found 2 matches
- Mon May 12, 2003 3:27 pm
- Forum: PHP - Theory and Design
- Topic: Iterator and SImpleIterator combined
- Replies: 6
- Views: 20055
- Thu May 08, 2003 4:07 pm
- Forum: PHP - Theory and Design
- Topic: Iterator and SImpleIterator combined
- Replies: 6
- Views: 20055
Why even get that complicated? Why not just:
Code: Select all
<?php
$it = & new Iterator;
while($row = $it->get_next()) {
echo $row['blah'];
}
?>