I'm using strip_tags in PHP and after it has processed the string, the string now also contains no \n's..
Is this standard with strip_tags?
|
I'm using strip_tags in PHP and after it has processed the string, the string now also contains no \n's.. Is this standard with strip_tags?
| |||
|
feedback
|
|
Well, is it so hard to test? :)
This test will pass. The same result is while using single quotes. So, no, strip_tags doesn't remove \n. EDIT:
Just as already other people here pointed out - strip_tags probably removes | |||||
feedback
|
|
Strip_tags should not remove \n but maybe it removes Try adding a list of tags to permit:
this shold allow | |||
|
feedback
|
|
The purpose of stripcslashes is to remove \n \r etc as indicated here. http://www.php.net/manual/en/function.stripcslashes.php Is there anything else in your code you can provide? A test with a simple:
| |||
|
feedback
|
\ns or only the displayed newlines? – NikiC Oct 29 '10 at 13:55