for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace EasyBanglaDateTests\Utils;
class CsvFileIterator implements \Iterator {
protected $file;
protected $key = 0;
protected $current;
public function __construct($file) {
$this->file = fopen($file, 'r');
}
public function __destruct() {
fclose($this->file);
public function rewind() {
rewind($this->file);
$this->current = fgetcsv($this->file);
$this->key = 0;
public function valid() {
return !feof($this->file);
public function key() {
return $this->key;
public function current() {
return $this->current;
public function next() {
$this->key++;