从链接获取标题,PHP 简单 HTML DOM 解析器

发布于 2024-11-27 13:55:53 字数 177 浏览 1 评论 0原文

我正在尝试从链接中获取标题 - 我已经确定了该链接,这只是从同一链接检索标题的最后一点。

为了找到正确的链接,我使用以下代码:

$html->find('a[href=http://mylink.se']');

但我也想要此链接的标题。我该怎么做呢?

I'm trying to get the title from a link - which I already have identified, it is just the last bit with retrieving the title from the same link.

To find the right link I use this code:

$html->find('a[href=http://mylink.se']');

But I also want the title from this link. How would I do that?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

吃不饱 2024-12-04 13:55:53

假设您正在使用 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

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

Assuming you're using PHP Simple HTML DOM parser, which is not clear in your question, you could do

$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

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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文