php 遍历CSV的类用法示例
内容摘要
这篇文章主要为大家详细介绍了php 遍历CSV的类用法示例,具有一定的参考价值,可以用来参考一下。
对此感兴趣的朋友,看看idc笔记做的技术笔记。经测试代码如下:
<?php
/**
*
对此感兴趣的朋友,看看idc笔记做的技术笔记。经测试代码如下:
<?php
/**
*
文章正文
这篇文章主要为大家详细介绍了php 遍历CSV的类用法示例,具有一定的参考价值,可以用来参考一下。
对此感兴趣的朋友,看看idc笔记做的技术笔记。经测试代码如下:
<?php
/**
* 遍历CSV类
*
* @param
* @arrange (www.idcnote.com)
**/
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 遍历CSV的类用法示例的内容就先介绍到这里,更多相关文章的可以留意
代码注释