By Greg Nowak, 17 April, 2020 PHP CSV Parsers: Practical Choices for Real-World Imports Choose a PHP CSV parser for imports that must survive messy files, encodings, headers, validation, and everyday business support pressure. Tags php csv Data Import Backend Integration
By Greg Nowak, 13 June, 2017 CSV Kit Notes Tips and Examples Nice thing to use when working with CSV-files is CSV Kit. See the file statistics: csvstat -e UTF-16 test.csv Merge all files in a folder: csvstack -e UTF-16 -t *.csv > all.csv Save column 2 to output .csv: csvcut -c 2 -e UTF-8 all.csv > output.csv Tags Linux csv Data