Currently, I use strip_tags, to remove all html tags from the strings I process. However, I notice lately, that it joins words, which contained in the tags removed ie

$str = "<li>Hello</li><li>world</li>";
$result = strip_tags($str);
echo $result;
(prints HelloWorld)

How can you get around this?

link|improve this question

56% accept rate
3  
Well, there are no spaces anywhere in your string, why should PHP insert them (and where)? Think about it as simple replace function. – Felix Kling Dec 11 '11 at 17:07
Hi Felix. I see your point. The thing is that this is something very common. Say you need to extract tags from a document, insert clean text in a db for fulltext searching. How can you assure that the content is clean and correctly formatted? – Thomas Dec 11 '11 at 17:17
this is like chicken and egg, you want to remove the HTML tag, and yet keeping the format of original text, is hard to keep both side in balance. If you want to cater for fulltext search, there are lots of manner ... – ajreal Dec 11 '11 at 17:29
feedback

4 Answers

You would be better off with htmlentities()

It won't remove the <>, but escape them.

link|improve this answer
Hi. The thing is that I don't want any tags (encoded or not) – Thomas Dec 11 '11 at 17:08
Why do you want the user to enter tags for just removing them? – fabianhjr Dec 11 '11 at 17:09
it is not user input – Thomas Dec 11 '11 at 17:10
feedback

This would replace all html tags (anything in the form of < ABC >, in fact, without check if it truly is html) with a whitespace, then replace possible double whitespaces to single whitespaces and remove starting or ending whitespaces.

$str = preg_replace("/<.*?>/", " ", $str);
$str = trim(str_replace("  ", " ", $str));
link|improve this answer
feedback

It all depends on what output you want after stripping HTML tags. For example:

If you want the <li> tags to be converted in a plain list of items, I would suggest you to use str_replace to replace <li> with * and </li> with \n.

strip_tags's proposal is to get rid of HTML tags without any other conversion.

link|improve this answer
Essentially, I want a string with all html tags removed without messing the original text (join words etc). – Thomas Dec 11 '11 at 17:21
feedback

Found the below question, which basically solves my problem Problem using strip_tags in php

Thanks fot the help anyway

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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