PHP 5.3 にアップグレードしましたが、これらのタグを Preg_replace に変換する方法を知る必要があります。
何か案は?
$html = ereg_replace("<(/)?(font|span|del|ins)[^>]*>", "", $html);
// then run another pass over the html (twice), removing unwanted attributes
$html = ereg_replace("<([^>]*)(class|lang|style|size|face)=(\"[^\"]*\"|'[^']*'|[^>]+)([^>]*)>", "<\\1>", $html);
$html = ereg_replace("<([^>]*)(class|lang|style|size|face)=(\"[^\"]*\"|'[^']*'|[^>]+)([^>]*)>", "<\\1>", $html);