Strip new lines in PHP
I've been working with phrases the past couple of d开发者_运维问答ays and the only problem I seem to be facing is stripping new lines in the html before printing it.
Anybody have any idea how to remove every new lines from HTML using PHP?
str_replace(array("\r", "\n"), '', $string)
the pt2ph8 answer didn't work for me until I have changed it a little bit as follows:
str_replace(array("\\r", "\\n"), '', $string);
You can see the different results in this demo:
http://phpfiddle.org/lite/code/g5s8-nt3i
精彩评论