Içerik içinde düz metin Çapa etiketler

1 Cevap php

Ben içerik içinde <a> etiketleri maç ve bir baskı sürümü için köşeli parantez içinde url izledi bağlantı metni ile daha sonra değiştirmek için çalışıyorum. Sadece "href" olup, aşağıdaki örnek çalışır. <a> başka bir niteliği varsa, çok fazla eşleşen ve istenilen sonucu vermez. Nasıl URL ve bağlantı metni maç ve bu kadar olabilir?

İşte benim kod:

<?php
$content = '<a href="http://www.website.com">This is a text link</a>';
$result = preg_replace('/<a href="(http:\/\/[A-Za-z0-9\\.:\/]{1,})">([\\s\\S]*?)<\/a>/',
     '<strong>\\2</strong> [\\1]', $content);
echo $result;
?>

İstenilen sonuç:

<strong>This is a text link </strong> [http://www.website.com]

Thanks, Jason

1 Cevap

HTML değil, düzenli ifadeler ayrıştırmak için DOM kullanarak olmalıdır ...

Edit: href nitelik değeri basit regex ayrıştırma yapmak için kod güncellendi.

Düzenleme # 2: döngü gerici yapılmış bu nedenle birden değiştirmeleri işleyebilir.

$content = '
<p><a href="http://www.website.com">This is a text link</a></p>
<a href="http://sitename.com/#foo">bah</a>

<a href="#foo">I wont change</a>

';


 $dom = new DOMDocument();
    $dom->loadHTML($content);

    $anchors = $dom->getElementsByTagName('a');
    $len = $anchors->length;

    if ( $len > 0 ) {
        $i = $len-1;
        while ( $i > -1 ) {
        $anchor = $anchors->item( $i );

        if ( $anchor->hasAttribute('href') ) {
            $href = $anchor->getAttribute('href');
            $regex = '/^http/';

            if ( !preg_match ( $regex, $href ) ) { 
        	$i--;
        	continue;
            }

            $text = $anchor->nodeValue;
            $textNode = $dom->createTextNode( $text );

            $strong = $dom->createElement('strong');
            $strong->appendChild( $textNode );

            $anchor->parentNode->replaceChild( $strong, $anchor );
        }
        $i--;
        }
    }

    echo $dom->saveHTML();
    ?>