aboustayyef/previewer

接收一个URL并返回标题、图片、摘要和内容

dev-master 2015-05-27 20:08 UTC

This package is not auto-updated.

Last update: 2024-09-28 17:02:12 UTC


README

## URL预览器

该类接收一个URL作为输入,并输出该URL的标题、描述和图片

## 使用方法

<?php 

use Aboustayyef\Previewer;

$previewer = new Previewer('http://url.goes/here');
$title = $previewer->getTitle();
$description = $previewer->getDescription();
$image = $previewer->getImage();

?>