0

这是我的代码,其中 raw 包含一个 HTML 字符串,该字符串具有许多具有不同标题属性的“a href”标签,我想检查该字符串是否具有标题为“x”的超链接标签。如何通过在 PHP 中使用 Ganon HTML dom 解析器来做到这一点。

function store($raw, $link)
{
    $html = str_get_dom($raw);
    if ($html has a href tag with title = "x")
    {
        $anchor = $html('a[title = x]')->getPlainText();
        foreach($anchor as $abc)
        {
            echo $abc->title."<br>";
        }
    }
}
4

1 回答 1

0

您应该能够执行以下操作,但不确定您到底想做什么,但这基本上会查找<a>您传入的带有 title 属性的 ( $link),然后输出此标记的 href 属性。反转它很容易,但主要是如何通过属性值找到某些东西然后显示元素的其他部分的逻辑。

function store($raw, $link)
{
    $html = str_get_dom($raw);
    $anchor = $html('a[title = "'.$link.'"]');
    foreach($anchor as $abc)
    {
        echo $abc->href."<br>";
    }
}

$html = <<< HTML
<html><a href='abc' title='firsttitle'>linkxrefabc</a>
<a href='xref' title='title2'>linkxref</a></html>
HTML;

store($html, 'firsttitle');   // outputs abc<br>

store($html, 'title2');  // outputs xref<br>
于 2018-04-08T18:11:31.647 回答