$text = eregi_replace("<span([>]|\n)*>","", $text);
Replace span with any tag such as p or html.
The reason to use this is to clean Microsoft code such a tag like:
<p class=01UnitTitle>
so you can turn it into:
<p>
$text = eregi_replace("<p([>]|\n)*>","<p>", $text);