序章
以下の会話より
レキレ
単純に正規表現を使用しないのはなぜですか? –
ジオナF
れきれずっとそうやってるんだけど、DOMDocument/html5libに切り替えようとしている…
HTML 5でサポートされなくなった問題に対処しているため、これは両方の仕事ではないDomDocument
と私が信じている理由に完全に同意しますRegular Expresstion
depreciated HTML Tags
含意
これは、font
交換する必要があるかもしれない唯一の問題ではないことを意味します
- 頭字語
- アプレット
- ベースフォント
- 大きい
- 中心
- dir
- フレーム
- フレームセット
- フレームなし
- s
- 攻撃
- tt
- xmp
Tidy を使用する
あなたがやろうとしていることをする必要がないように設計されたTidyをお勧めします
フォーム PHP ドキュメント
Tidy は、Tidy HTMLクリーンおよび修復ユーティリティのバインディングであり、HTML ドキュメントをクリーンアップして操作するだけでなく、ドキュメント ツリーをトラバースすることもできます。
例
$html = '<font color="#ff0000">Lorem <font size="4">ipsum dolor</font> sit amet</font>';
$config = array(
'indent' => true,
'show-body-only' => false,
'clean' => true,
'output-xhtml' => true,
'preserve-entities' => true);
$tidy = new tidy();
echo $tidy->repairString($html, $config, 'UTF8');
出力
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title></title>
<style type="text/css">
/*<![CDATA[*/
span.c2 {
color: #FF0000
}
span.c1 {
font-size: 120%
}
/*]]>*/
</style>
</head>
<body><span class="c2">Lorem <span class="c1">ipsum dolor</span> sit amet</span>
</body>
</html>
例については、余分な/冗長な書式タグを削除して HTML をクリーニングするも参照してください。
Better Sill : HTMLPurifier
Tidy を使用して HTML をクリーンアップするHTMLPurifierを使用できます。TidyLevel を設定するだけです。
HTML Purifier は、PHP で書かれた標準準拠の HTML フィルター ライブラリです。HTML Purifier は、完全に監査された安全で許容的なホワイトリストを使用してすべての悪意のあるコード(XSS として知られている) を削除するだけでなく、ドキュメントが標準に準拠していることを確認します。
require_once 'htmlpurifier-4.4.0/library/HTMLPurifier.auto.php';
$html = '<font color="#ff0000">Lorem <font size="4">ipsum dolor</font> sit amet</font>';
$config = HTMLPurifier_Config::createDefault();
$config->set('HTML.TidyLevel', 'heavy');
$purifier = new HTMLPurifier($config);
$clean = $purifier->purify($html);
var_dump($clean);
出力
string '<span style="color:#ff0000;">Lorem <span style="font-size:large;">ipsum dolor</span> sit amet</span>' (length=100)
DOMDocument が欲しい
あなたが望むのはdomだけで、私のすべての説明を気にしないなら、あなたは使うことができます
$html = '<font color="#ff0000">Lorem <font size="4">ipsum dolor</font> sit amet</font>';
$dom = new DOMDocument();
$dom->loadHTML($html);
$nodes = iterator_to_array($dom->getElementsByTagName('font'));
foreach ( $nodes as $font ) {
$css = array();
$font->hasAttribute('size') and $css[] = 'font-size:' . round($font->getAttribute('size') / 2, 1) . 'em;';
$font->hasAttribute('color') and $css[] = 'color:' . $font->getAttribute('color') . ';';
$span = $dom->createElement('span');
$children = array();
foreach ( $font->childNodes as $child )
$children[] = $child;
foreach ( $children as $child )
$span->appendChild($child);
$span->setAttribute('style', implode('; ', $css));
$font->parentNode->replaceChild($span, $font);
}
echo "<pre>";
$dom->formatOutput = true;
print(htmlentities($dom->saveXML()));