欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

php遍历CSV类实例

程序员文章站 2022-03-31 21:50:58
本文实例讲述了php遍历csv类。分享给大家供大家参考。具体如下:

本文实例讲述了php遍历csv类。分享给大家供大家参考。具体如下:

<?php
class csviterator implements iterator
{ 
  const row_size = 4096;
  private $filepointer;
  private $currentelement;
  private $rowcounter;
  private $delimiter;
  public function __construct( $file, $delimiter = ',' )
  {
    $this->filepointer = fopen( $file, 'r' );
    $this->delimiter  = $delimiter;
  }
  public function rewind()
  {
    $this->rowcounter = 0;
    rewind( $this->filepointer );
  }
  public function current()
  {
    $this->currentelement = fgetcsv($this->filepointer,self::row_size,$this->delimiter);
    $this->rowcounter++;
    return $this->currentelement;
  }
  public function key()
  {
    return $this->rowcounter;
  }
  public function next()
  {
    return !feof( $this->filepointer );
  }
  public function valid()
  {
    if( !$this->next() )
    {
      fclose( $this->filepointer );
      return false;
    }
    return true;
  }
} // end class
?>

希望本文所述对大家的php程序设计有所帮助。