Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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?

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.