1

私はこのhtmlフラグメントを持っています:

<font color="#ff0000">Lorem <font size="4">ipsum dolor</font> sit amet</font>

DOMDocument を使用fontして、各タグをに置き換えたいと思います。spanそれが私の関数atmです:

$fonts = $xPath->query('//font');
foreach($fonts as $font){
    $style = '';
    $newFont = $dom->createElement('span',$font->nodeValue);
    if($font->hasAttribute('size')){
        $size = $font->getAttribute('size');
        $style.='font-size:'.round($size/2,1).'em; ';
    }
    if($font->hasAttribute('color')){
        $style.='color:'.$font->getAttribute('color').'; ';
    }
    if($style!='') $newFont->setAttribute('style',$style);
    $font->parentNode->replaceChild($newFont,$font);
}

私はこの出力を期待していました:

<span style="color:#ff0000; ">Lorem <span style="font-size:2em;">ipsum etc..

しかし、私は得る:

<span style="color:#ff0000; ">Lorem ipsum dolor sit amet</span>

なんで?


$font->parentNode->replaceChild($newFont,$font);どういうわけか、外側のスパンをテキスト値だけに置き換えているために発生すると思います...または、このクエリ$xPath->query('//font')が間違っている可能性があります。経験豊富な提案が大好きです...ありがとう

4

3 に答える 3

8

序章

以下の会話より

レキレ

単純に正規表現を使用しないのはなぜですか? –

ジオナF

れきれずっとそうやってるんだけど、DOMDocument/html5libに切り替えようとしている…

HTML 5でサポートされなくなった問題に対処しているため、これは両方の仕事ではないDomDocumentと私が信じている理由に完全に同意しますRegular Expresstiondepreciated 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()));
于 2012-11-08T03:21:48.423 に答える
2

XSL を使用して、タグをスパンに変更することができます。

<?php

$dom = new DOMDocument();

$dom->loadXML('<font color="#ff0000">Lorem <font size="4">ipsum dolor</font> sit amet</font>');

echo "Starting Point:" . $dom->saveXML() . PHP_EOL;

$xsl = new DOMDocument('1.0', 'UTF-8');
// Could be a seperate file
$xsl->loadXML(<<<XSLT
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
                version="1.0">

    <!-- Identity rule -->
    <xsl:template match="@*|node()"><xsl:copy><xsl:apply-templates select="@*|node()"/></xsl:copy></xsl:template>
    <xsl:template match="text()"><xsl:value-of disable-output-escaping="yes" select="."/></xsl:template>

    <xsl:template match="font">
        <xsl:element name="span">
            <xsl:attribute name="style" xsl:space="default">
                <xsl:if test="@size">font-size: <xsl:value-of select="round(@size * 10 div 2) div 10" /> em;</xsl:if>
                <xsl:if test="@color">color: <xsl:value-of select="@color" />;</xsl:if>
            </xsl:attribute>
            <xsl:apply-templates select="node()"/>
        </xsl:element>
    </xsl:template>
</xsl:stylesheet>
XSLT
);

$proc = new XSLTProcessor();
$proc->importStylesheet($xsl);
echo $proc->transformToXML($dom);
于 2012-11-07T19:03:28.057 に答える
1

コード サンプルがいくつかの異なる問題に直面しているようです。

  1. クエリ結果に変更中のアイテムが含まれています
  2. $node->nodValue に子ノードが含まれていません

foreach から while への変更が見つかり、クエリを複数回実行すると、変更ツリー内のノードの検索に関する問題が回避されました。

$fonts = $xPath->query('//font');
while ($fonts->length > 0) {
    $font = $fonts->item(0);

    // Get bits of data before touching the tree

    $style   = '';
    if($font->hasAttribute('size')){
        $size   = $font->getAttribute('size');
        $style .= 'font-size:' . round($size/2, 1) . 'em; ';
    }
    if($font->hasAttribute('color')){
        $style .= 'color:' . $font->getAttribute('color') . '; ';
    }

    // Create the new node

    $newFont = $dom->createElement('span');
    if(!empty($style)) {
        $newFont->setAttribute('style', $style);
    }


    // Copy all children into a basic array to avoid an iterator
    // on a changing tree
    $children = iterator_to_array($font->childNodes);
    foreach ($children as $child) {
        // This has a side effect of removing the child from its old
        // location, which changes the tree
        $newFont->appendChild($child);
    }

    // Replace the parent's child, which changes the tree
    $font->parentNode->replaceChild($newFont, $font);


    // query again on the new tree
    $fonts = $xPath->query('//font');
}
于 2012-11-06T17:28:18.323 に答える