PHP Simple HTML DOM Parser>修改提取的链接

时间:2012-09-05 19:41:05

标签: php dom

我有一个脚本可以从网站上获取内容,我想做的就是修改所有链接。假设:

$html = str_get_html('<h2 class="r"><a class="l" href="http://www.example.com/2009/07/page.html" onmousedown="return curwt(this, 'http://www.example.com/2009/07/page.html')">SEO Result Boost <b> </b></a></h2>');

所以,是否可以用这种方式修改或重写它&gt;

<h2 class="r"><a class="l" href="http://www.site.com?http://www.example.com/2009/07/page.html">SEO Result Boost <b> </b></a></h2>


我已阅读本手册,但无法理解如何计算(http://simplehtmldom.sourceforge.net/#fragment-12

是否可能,有什么想法?

1 个答案:

答案 0 :(得分:5)

假设answer to a related question有效,

您应该可以使用以下工作Simple HTML DOM

$site = "http://siteyourgettinglinksfrom.com";
$doc = str_get_html($code);
foreach ($doc->find('a[href]') as $a) {
$href = $a->href;
if (/* $href begins with a absolute URL path */) {
    $a->href = 'http://www.site.com?'.$href;
}
else{ /* $href begins with a relative path */        
    $a->href = 'http://www.site.com?'.$site.$href;
}

}
$code = (string) $doc;

使用PHP’s native DOM library

$site = "http://siteyourgettinglinksfrom.com";
$doc = new DOMDocument();
$doc->loadHTML($code);
$xpath = new DOMXpath($doc);
foreach ($xpath->query('//a[@href]') as $a) {
$href = $a->getAttribute('href');
if (/* $href begins with a absolute URL path */) {
    $a->setAttribute('href', 'http://www.site.com?'.$href);
}
else{ /* $href begins with a relative path */
    $a->setAttribute('href', 'http://www.site.com?'.$site.$href);
}
}
$code = $doc->saveHTML();

检查$ href:

您将检查相关链接并预先添加内容的网站地址,因为大多数网站都使用相对链接。 (this is where a regular expression matcher would be your best friend)

对于相对链接,您将absoute路径添加到您从

获取链接的站点
  'http://www.site.com?'.$site.$href

对于绝对链接,您只需附加相对链接

  'http://www.site.com?'.$href

示例链接:

网站亲属:/images/picture.jpg

文件亲属:../images/picture.jpg

绝对:http://somesite.com/images/picture.jpg

注意:还有一些工作需要在这里完成,因为如果您处理“文档相对”链接,那么您将必须知道您当前所在的目录。链接应该是好的,只要你有从你获得链接的网站的根文件夹)