Assuming you have a string as follows:
$str = 'one value, two value, "three, cool value", four value';
How would you make it an array as follows:
$arr = array('one value', 'two value', 'three, cool value', 'four value');
(That's all about CSV and values that contain a comma and thus are double quoted.)