1

我目前正在使用这个 HTML DOM PARSER 使用 php:http ://simplehtmldom.sourceforge.net/

我对如何删除和替换所选属性感到困惑href="style.css",我想用 替换链接"index/style.css",我应该只插入

指数/

或者从整个 html 代码中替换整个属性?

4

3 回答 3

12

这应该这样做:

$doc = str_get_html($code);
foreach ($doc->find('a[href]') as $a) {
    $href = $a->href;
    if (/* $href begins with a relative URL path */) {
        $a->href = 'index/'.$href;
    }

}
$code = (string) $doc;

你也可以使用PHP 的原生 DOM 库

$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 relative URL path */) {
        $a->setAttribute('href', 'index/'.$href);
    }
}
$code = $doc->saveHTML();
于 2011-01-05T11:07:18.653 回答
1

官方手册有几个例子,基本上涵盖了你所需要的一切:

http://simplehtmldom.sourceforge.net/manual.htm

如果您对某些特定步骤有疑问,请随时更新您的问题并提供一些代码。

于 2011-01-05T10:36:08.553 回答
0
$html = str_get_html($string); 
if ($html){ // Verify connection, return False if could not load the resource
    $e = $html->find("a");
    foreach ($e as $e_element){
        $old_href = $e_element->outertext;
        // Do your modification in here 
        $e_element->href = affiliate($e_element->href); // for example I replace original link by the return of custom function named 'affiliate'
        $e_element->href = ""; //remove href
        $e_element->target .= "_blank"; // I added target _blank to open in new tab
        // end modification 
        $html = str_replace($old_href, $e_element->outertext, $html); // Update the href
    }
于 2015-12-16T06:14:29.713 回答