hazaveh/php-link-preview
最新稳定版本:1.0.4
Composer 安装命令:
composer require hazaveh/php-link-preview
包简介
PHP Link Preview library
README 文档
README
PHP Link Preview
PHP Link Preview is a small library that can crawl and return the OG & Meta tags of an URL. This can be used in your applications to display a preview of a URL similar to what happens when you paste a link in Social Media sites or Whatsapp.
Current Information
title: open graph title, if not found page title will be returneddescription: open graph description, if not found page description from meta tag is returnedimage: open graph imageicon: favicon (if icon is explicitly specified in the HTML source)
Dependencies
- PHP >= 8.2
- Guzzle >= 6
- Symfony DomCrawler >= 3.0
- Symfony CssSelector >= 3.0
Installation
Simply run via composer:
composer require hazaveh/php-link-preview
Usage
Create an instance of Client and use parse method to crawl a URL.
use Hazaveh\LinkPreview\Client; require_once 'vendor/autoload.php'; $client = new Client(); /** * Returns an instance of Hazaveh\LinkPreview\Model\Link * {title, description, image, icon, locale} */ $preview = $client->parse("https://hazaveh.net/2023/07/re-inventing-bookmarks-for-teams/");
Using Custom Parser
Out of the box this library comes with a Parser that uses included extractor classes to extract different pieces of information from the page. You can always use a custom parser that implements ParserInterface and have your own logic to extract information from the page.
You are also free to use a Custom Link class which would then include additional information you might want to parse off the website during parsing process.
class CustomParser implements ParserInterface { public function parse(string $url): Link { return new Link(url: $url); } } $client = new Client(new CustomParser());
Contribution
Do something cool and add a PR.
统计信息
- 总下载量: 15.44k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 18
- 点击次数: 1
- 依赖项目数: 1
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2023-09-27