I want to replace each occurency of font size="somenumber"
(the number every time is different!) with the font-size="somenumber"
.
How to make this with php?
I have a text that looks like this:
Hello <font size="4">today</font> is my
<font size="3">special day</font> and am
<font size="11">ready</font> for it...
And i want to convert it into this:
Hello <span style="font-size:4;">today</span> is my
<span style="font-size:3;">special day</span> and am
<span style="font-size:11;">ready</span> for it...