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 have a file that I have to read in and modify in PHP, and so I read it in, explode it by new lines, modify what I need, then re-stick it together re-adding newlines via \n.

However, it seems to be outputting them as \r\\n for some reason. The file before any modification has new lines as \r\n which seems to work fine. Only when I add the new lines via \n does it break into \r\\n.

Also after some reading, I tried the newlines as \r\n instead of just \n, but that outputs as \r\\r\\n. Any ideas guys? Thanks a lot! If you need to see anything else or require more info, just ask.

The code that add's the new lines is here:

for($i = 0 ; $i<count($tmp);$i++){
        $tmpstr .= $tmp[$i];
        if(count($tmp)-1 != $i){
            $tmpstr .= '\r\n';
        }
    }

It adds newlines at the end of all but the last line, that seems to be working fine except for the wrong characters.

share|improve this question
are you splitting your string up with explode("\n", $string);? If so, just split it up with explode("\r\n", $string);, or do a str_replace("\r","", $string); – John Dec 1 '12 at 0:26
4  
Replace your loop with: $tmpstr = implode("\r\n", $tmp);. Ta-da! – NullUserException Dec 1 '12 at 0:27

3 Answers

up vote 4 down vote accepted

Change $tmpstr .= '\r\n';
To: $tmpstr .= "\r\n" # Use double quotes;

share|improve this answer
Thanks that worked, are there any other times I need to be careful of quotes vs apostrophes? – Samuraisoulification Dec 1 '12 at 0:39
theres a great answer here: stackoverflow.com/questions/3446216/… – JustAnil Dec 1 '12 at 22:43

you have to use double quotes "\r\n"

share|improve this answer

You can also use the predefined constant PHP_EOL (End Of Line):

$tmpstr .= PHP_EOL;
share|improve this answer

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.