保留锚标记并删除其他超链接


Keeping anchor tags and removing other hyperlinks

页面有链接到其他页面的超链接,以及跳转到页面内某个位置的锚标记。我想保留锚标记,并删除所有其他超链接。

锚标记示例:

<a class="footnote" href="#fnx" id="fnx_ref">x</a>

跳转

<a class="footnote" href="#fnx_ref">x</a>

其中x1,2,3,4 ... n

页面内的所有其他超链接(带或不带class属性)都需要删除。如何做到这一点?我应该使用php regex吗?

与其使用RegEx在html中找到合适的标签,不如使用DOMDocument &DOMXPath如下。

最后一行只是将最终的、编辑过的html回显到一个文本区,但是您可以很容易地将其保存到一个文件中。

/* XPath expression to find all anchors that do not contain "#" */
$query='//a[ not ( contains( @href, "#" ) ) ]';
/* Some url */
$url='http://stackoverflow.com/questions/39737604/keeping-anchor-tags-and-removing-other-hyperlinks-php-regex';
/* get the data */
$html=file_get_contents( $url );
/* construct DOMDocument & DOMXPath objects */
$dom=new DOMDocument;
$dom->loadHTML( $html );
$xp=new DOMXPath( $dom );
/* Run the query */
$col=$xp->query( $query );
/* Process all found nodes */
if( !empty( $col ) ){
    /*
        As you are removing nodes from the DOM you should 
        iterate backwards through the collection.
    */
    for ( $i = $col->length; --$i >= 0; ) {
      $a = $col->item( $i );
      $a->parentNode->removeChild( $a );
    }
    /* do something with processed html */
    echo "<textarea cols=150 rows=100>",$dom->saveHTML(),"</textarea>";
}
相关文章: