I want to import a csv file to database. I have a long csv file with a field value that should have multi lines in the same cell like the following format: column header : State cell value without quotes: "state-name\r\ncounty,district" notice I have "\r\n" to split into two lines.
I'm using the following function:
function split_lines($text) {
$lines = preg_split("/(\r\n|\n|\r)/", $text);
return $lines;
}
function _parse_tax($field) {
$data = array();
$lines = $this->split_lines($field);
foreach ($lines as $line) {
$data[] = str_getcsv($line, ',', '"');
}
the issue I have is when I import the csv file, the value of the state is not split into lines. I get two values: "state-namerncounty" and "district" Any idea?