[eluser]basty_dread[/eluser]
and this is the coding that i done..
it is working but its very long code..
where $content is the content above.
Code:
$setsize = ":15px"; // this is the size that i want to replace
$size = array(":6px", ":7px", ":8px", ":9px", ":10px", ":11px", ":12px", ":13px", ":14px", ":15px", ":16px", ":17px", ":18px", ":19px", ":20px", ":21px", ":22px", ":23px", ":24px", ":25px", ":26px");
$replaced = str_replace($size, $setsize, $content);
$fsetstyle = "family:arial,helvetica,sans-serif"; // this is the font family that i want to replace
$fstyle = array("family:arial,helvetica,sans-serif", "family:comic sans ms,cursive", "family:courier new,courier,monospace", "family:georgia,serif", "family:lucida sans unicode,lucida grande,sans-serif", "family:tahoma,geneva,sans-serif", "family:times new roman,times,serif", "family:trebuchet ms,helvetica,sans-serif", "family:verdana,geneva,sans-serif");
$replaced = str_replace($fstyle, $fsetstyle, $replaced);