Does anybody know how can I replace HTML string with spaces?
Because if I have something like this
<div>word1</div><div>word2</div>
when I use strip_tags(), the result is
word1word2
and I need them to be separated by space in order to be processed the way they should be by my script.