I've a php string like this:
I am a
<blockquote> <strong>string</strong>
<blockquote> with lot of</blockquote>
in <a href="#">it</a>
</blockquote>
hiya!
And I need to remove all blockquotes for transform it in:
I am a
hiya!
I think regex can be usefull but I can't find anything on stackoverflow nor on google and I don't know how to write by myself that.
Can someone tell me how to do it using php?
(I found this, but isn't regex and I don't know if it can remove html into the element too. Using PHP to remove a html element from a string)