how to read csv file with phalcon? working with php version 5.3 and phalcon1.3.2 thanx
The same like in PHP. Please check fgetcsv function: https://php.net//manual/en/function.fgetcsv.php
fgetcsv
thanx for instant reply. Is there any library to read csv?
Phalcon hasn't but on github there are many CSV libraries, for example: https://github.com/jwage/easy-csv or https://github.com/ockam/php-csv
Thanx :)
It's hard to imagine a library really being that much easier to use than fopen() & fgetcsv().