/ Published in: PHP
URL: http://www.php.net/~helly/php/ext/spl/classLimitIterator.html
SPL LimitIteratorの使い方 Pagerクラスを作る際のヒント
Expand |
Embed | Plain Text
'apple', 'lemon', 'orange', 'grape', 'melon', 'watermelon', 'strawberry', 'banana', 'mango', 'lime' ); $offset = 3; $count = 5; $innerIterator = new ArrayIterator($items); $itarator = new LimitIterator($innerIterator, $offset, $count); foreach ($iterator as $current) { print $current; }
You need to login to post a comment.
