从链接获取标题,PHP 简单 HTML DOM 解析器
我正在尝试从链接中获取标题 - 我已经确定了该链接,这只是从同一链接检索标题的最后一点。
为了找到正确的链接,我使用以下代码:
$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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
假设您正在使用 PHP Simple HTML DOM 解析器,这在您的问题中并不清楚,您可以执行
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
http://simplehtmldom.sourceforge.net/manual.htm