How do I import CSV files using zend framework? Should I use zend_file_transfer or is there any special class that I have to look into? Also if I use zend_file_transfer is there
You could also use SplFileObject for reading CSV files.
SplFileObject
From the php manual:
setFlags(SplFileObject::READ_CSV); foreach ($file as $row) { list($animal, $class, $legs) = $row; printf("A %s is a %s with %d legs\n", $animal, $class, $legs); } ?>
http://php.net/manual/en/splfileobject.fgetcsv.php