質問する
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 に答える