如何获得头衔+发布共享链接时的链接图像

发布于 2024-10-10 21:13:36 字数 126 浏览 2 评论 0原文

我想知道如何在 PHP 中重现 Facebook 上的行为:

当您共享链接时,它会抓取页面的标题,并自动从页面抓取图像来装饰链接。

有没有什么已经完成的东西,比如我可以看一下的插件?

谢谢。

I was wondering how to reproduce in PHP the comportment on Facebook:

When you share a link, it grabs the title of the page, and it automatically grabs the images from the page to decorate the link.

Is there anything already done like a plugin i can take a look at ?

Thank you.

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

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

发布评论

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

评论(1

眼中杀气 2024-10-17 21:13:36

使用 PHP DOM 类提取 url 内容并解析 html 以获取第一个 url 和

文本。

UPDATE

使用 DOM loadHTMLFile 方法将文件加载到 DOMDocument 对象中。

http://www.php.net/manual/en/domdocument.loadhtmlfile.php

使用 DOM getELementsByTagName 方法获取节点内容。

http://www.php.net/manual/en/domdocument.getelementsbytagname.php

使用nodeValue方法获取节点的值

use PHP DOM classes to pull url content and parse the html to grab first <img> url and <h1> text.

UPDATE

use the DOM loadHTMLFile method to load the file into a DOMDocument object.

http://www.php.net/manual/en/domdocument.loadhtmlfile.php

use the DOM getELementsByTagName method to get the node contents.

http://www.php.net/manual/en/domdocument.getelementsbytagname.php

use nodeValue method to get the node's value

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