码迷,mamicode.com
首页 > Web开发 > 详细

PHP 文件迭代器

时间:2014-07-10 14:07:11      阅读:205      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   使用   文件   cti   

使用了SPL的 迭代器, 可以直接对打开的文件进行foreach读取, 类的构造如下

class FileIterator implements Iterator
{
    private  $fp;
    private  $line_num;
    private  $line;

    public function __construct($filename) 
    {   
        $fp = @fopen($filename, ‘r‘);
        if (!$fp) {
            throw new Exception("file ".$filename." is not exists"); 
        }   
        $this->fp = $fp;
    }   

    public function key()
    {   
        return $this->line_num;
    }   

    public function current()
    {   
        return $this->line;
    }   

    public function rewind()
    {   
        rewind($this->fp);
    }   

    public function next()
    {   
    }   

    public function valid()
    {   
        $this->line = fgets($this->fp);
        $this->line_num++;
        return $this->line != false;
    }

}

使用方法 

 

foreach(new fileIterator(‘./test.txt‘) as $k => $line) {
        echo $k."->".$line;
}

可以再包装一个方法在对象的构造上,这样就不用显示的去构造类了。

PHP 文件迭代器,布布扣,bubuko.com

PHP 文件迭代器

标签:style   blog   color   使用   文件   cti   

原文地址:http://www.cnblogs.com/sailrancho/p/3811707.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!