检索 php/Javascript/jqueryurl 中 url 的标题、描述和缩略图
当我们在 facebook 上发布任何 url 时,它会显示其元数据(标题、描述和缩略图),我们如何在 php 或脚本语言(javascript/jquery)中实现相同的功能。
As we post any url on facebook, it shows its meta-data(title, decription and thumbnail image), How can we achieve same thing in php or scripting language(javascript/jquery).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我相信,Facebook 只是解析链接后面网站的 html 代码并查找
标签。然后,您可以选择任何找到的图像作为链接的图片。
在 PHP 中,您可以通过以下方式获取网站 HTML 源代码
,然后使用正则表达式查找这些
标记。
I believe, Facebook simply parses the html code of the Website behind the link and looks for
<img />
tags. You can then choose any of the found images as picture for your link.In PHP, you would fetch the websites HTML source via
Then use regular expressions to find those
<img />
tags.有一个很好的插件可以用作入门。
它不会获取图像,但如果您想实现自己的
http://www.webinfopedia.com/extract-meta-data-from-url-using-php.html
There is a good plugin that can be used as a headstart.
It does not fetch the image, but it's a start if you want to implement your own
http://www.webinfopedia.com/extract-meta-data-from-url-using-php.html