I have a csv file (really big) that I'm parsing with php.
Now is made like this.
x,y,z,value,etc
but sometimes there is this:
x,"blah,blah,blah",z,value,etc
doing this: explode(',',$string);
In case of a "" value also explode everything within.
array([0]=>x,[1]=>"blah,[2]=>blah,[3]=>blah"....)
What can I do to have this:
array([0]=>x,[1]=>"blah,blah,blah",[2]=>z....)
instead?
Thanks