PHP预定义接口之Iterator用法示例
发布:smiling 来源: PHP粉丝网 添加日期:2022-07-08 10:59:23 浏览: 评论:0
本文实例讲述了PHP预定义接口之Iterator用法。分享给大家供大家参考,具体如下:
Iterator(迭代器)接口
可在内部迭代自己的外部迭代器或类的接口。
接口摘要
- Iterator extends Traversable {
- /* 方法 */
- abstract public current ( void ) : mixed
- abstract public key ( void ) : scalar
- abstract public next ( void ) : void
- abstract public rewind ( void ) : void
- abstract public valid ( void ) : bool
- }
例:
- <?php
- class myIterator implements Iterator
- {
- private $position = 0;
- private $array = array(
- 'first_element',
- 'second_element',
- 'last_element',
- );
- /**
- * 重置键的位置
- */
- public function rewind(): void
- {
- var_dump(__METHOD__);
- $this->position = 0;
- }
- /**
- * 返回当前元素
- */
- public function current()
- {
- var_dump(__METHOD__);
- return $this->array[$this->position];
- }
- /**
- * 返回当前元素的键
- * @return int
- */
- public function key(): int
- {
- var_dump(__METHOD__);
- return $this->position;
- }
- /**
- * 将键移动到下一位
- */
- public function next(): void
- {
- var_dump(__METHOD__);
- ++$this->position;
- }
- /**
- * 判断键所在位置的元素是否存在
- * @return bool
- */
- public function valid(): bool
- {
- var_dump(__METHOD__);
- return isset($this->array[$this->position]);
- }
- }
- $it = new myIterator;
- foreach ($it as $key => $value) {
- var_dump($key, $value);
- echo "\n";
- }
输出结果:
- string 'myIterator::rewind' (length=18)
- string 'myIterator::valid' (length=17)
- string 'myIterator::current' (length=19)
- string 'myIterator::key' (length=15)
- int 0
- string 'first_element' (length=13)
- string 'myIterator::next' (length=16)
- string 'myIterator::valid' (length=17)
- string 'myIterator::current' (length=19)
- string 'myIterator::key' (length=15)
- int 1
- string 'second_element' (length=14)
- string 'myIterator::next' (length=16)
- string 'myIterator::valid' (length=17)
- string 'myIterator::current' (length=19)
- string 'myIterator::key' (length=15)
- int 2
- string 'last_element' (length=12)
- string 'myIterator::next' (length=16)
- string 'myIterator::valid' (length=17)
由结果可知,当类实现了Iterator接口,实现改类实例数据集的时候首先会将数据集的键重置,然后逐步后移,每次都会进行然后返回当前元素以及当前键。
Tags: PHP预定义接口 Iterator
- 上一篇:基于ob系列函数实现PHP网站页面静态化
- 下一篇:最后一页
相关文章
- ·PHP迭代器接口Iterator用法分析(2021-08-25)
- ·PHP聚合式迭代器接口IteratorAggregate用法分析(2021-08-25)
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)