php迭代器

Posted 2016

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php迭代器相关的知识,希望对你有一定的参考价值。

<?php

class Fibonacci implements Iterator { 
    private $previous = 1; 
    private $current = 0; 
    private $key = 0; 
    
    public function current() { 
        return $this->current; 
    } 
    
    public function key() { 
        return $this->key; 
    } 
    
    public function next() { 
        // 将当前值保存到  $newprevious
        $newprevious = $this->current; 
        // 将上一个值与当前值的和赋给当前值
        $this->current += $this->previous; 
        // 前一个当前值赋给上一个值
        $this->previous = $newprevious; 
        $this->key++; 
    } 
    
    public function rewind() { 
        $this->previous = 1; 
        $this->current = 0; 
        $this->key = 0; 
    } 
    
    public function valid() { 
        return true; 
    } 
} 

$seq = new Fibonacci; 
$i = 0; 
foreach ($seq as $f) { 
    echo $f, ‘<br>‘; 
    if ($i++ === 15) break; 
} 

 原理:http://www.nowamagic.net/librarys/veda/detail/2161

以上是关于php迭代器的主要内容,如果未能解决你的问题,请参考以下文章

PHP迭代器

PHP使用迭代器Iterator读取大容量文本文件

PHP使用迭代器Iterator读取大容量文本文件

迭代器模式及php实现

PHP设计模式-迭代器模式

轻量级“集合”迭代器-Generator