I am crawling the web for html, and when I use php strip_tags it smushes the entire html into one line removing all structure.

I would like to preserve structure, by replacing closing h, p and br tags with newlines.

Would a preg replace be the best solution for this?

Once I replaced all closing tags I would run a strip tags but this way I would have a basic structure.

link|improve this question

73% accept rate
feedback

2 Answers

up vote 1 down vote accepted
$str = 'some html';
$tags = array('</p>','<br />','<br>','<hr />','<hr>','</h1>','</h2>','</h3>','</h4>','</h5>','</h6>');
$str = str_replace($tags,"\n",$str);

// then strip tags
link|improve this answer
Lovely, thanks. 6 more minutes until I can mark it as the answer. – giorgio79 Dec 14 '11 at 9:07
Why loop through the array? You can just pass the array straight to str_replace. – liquorvicar Dec 14 '11 at 9:07
Good point liquorvicar, will do that. – giorgio79 Dec 14 '11 at 9:08
@liquorvicar good point - I forgot str_replace could do that - see updated – Alex Coplan Dec 14 '11 at 9:08
why the downvote? – Alex Coplan Dec 14 '11 at 9:14
show 4 more comments
feedback

Why not just run it through tidy afterwords to get the structure back?

link|improve this answer
I would like to strip all html tags, but keep the basic structure with new lines. – giorgio79 Dec 14 '11 at 9:10
feedback

Your Answer

 
or
required, but never shown

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