这是我的代码,其中 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>";
}
}
}