Depends on how your csv's are made. For fields that have special characters in it they need to be escaped, or enclosed by something like a quote.
"field,1","field,2","field,3"
you can import something like that with fgetcsv()
It will break it into an array.
$Array[0] = field,1
$Array[1] = field,2
etc.