I\'m trying to parse a CSV string to an array in PHP. The CSV string has the following attributes:
Delimiter: , Encl
Handy oneliner:
$csv = array_map('str_getcsv', file('data.csv'));