php - 包含特定 href 值的正则表达式剥离标签
问问题
1303 次
2 回答
1
这是一种更可靠的基于 DOM 的方法:
<?php
$a = 'Lorem ipsum <a href="http://mysite.com/testing/something">dolor</a> sit amet, <a href="http://keepingThisLink.com">consectetur</a> adipiscing elit. Duis dignissim <a href="http://mysite.com/testing">golor</a> vitae turpis fermentum tincidunt.';
$domd = new DOMDocument();
libxml_use_internal_errors(true);
$domd->loadHTML($a);
$domx = new DOMXPath($domd);
foreach ($domx->query("//a") as $link) {
$href = $link->getAttribute("href");
if ($href === "http://keepingThisLink.com") {
continue;
}
$text = $domd->createTextNode($link->nodeValue);
$link->parentNode->replaceChild($text, $link);
}
//unfortunately saveHTML adds doctype and a few unneccessary tags
var_dump(preg_replace('/^<!DOCTYPE.+?>/', '', str_replace( array('<html>', '</html>', '<body>', '</body>'), array('', '', '', ''), $domd->saveHTML())));
输出是:
string(161) "
<p>Lorem ipsum dolor sit amet, <a href="http://keepingThisLink.com">consectetur</a> adipiscing elit. Duis dignissim golor vitae turpis fermentum tincidunt.</p>
"
于 2012-06-07T13:16:26.897 回答
0
您可能想查看 PHP 的 DOM 类,它们可以让您定位 HTML 文档中的所有超链接,获取它们的 href 属性并以比尝试使用正则表达式更强大的方式更新/删除它们。
(请注意,以下示例是“从臀部”,未经测试)
$dom = new DOMDocument ();
// Load from a file
$dom -> load ('/path/to/my/file.html');
// Or load a HTML string
$dom -> loadHTML ($string);
// Or load an XHTML string as XML
$dom -> loadXML ($string);
// Find all the hyperlinks
if ($nodes = $dom -> getElementsByTagName ('a'))
{
foreach ($nodes as $node)
{
var_dump ($node -> getAttribute ('href'));
}
}
于 2012-06-07T13:19:49.323 回答