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程序设计有所帮助。
上一篇: 鼻窦炎的晚期有哪些常见症状
下一篇: 眼睛累了、干了,7个小动作帮你提神醒脑!