我正在尝试从链接中获取标题 - 我已经确定了它,这只是从同一链接检索标题的最后一点。
要找到正确的链接,请使用以下代码:
$html->find('a[href=http://mylink.se']');
但我也想要这个链接的标题。我该怎么做?
答案 0 :(得分:2)
假设你正在使用PHP Simple HTML DOM解析器,你的问题不明确,你可以做
$link = $html->find('a[href=http://mylink.se]', 0); //As the OP pointed out in comments, you need to select the first element
$title = $link->title