aboustayyef/previewer

takes a url and returns title, image, excerpt and content

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

This package is not auto-updated.

Last update: 2024-04-13 14:08:05 UTC


README

#Previewer for URLs

This class takes a url as input and outputs a Title, a Description and an Image for that url

##Usage

<?php 

use Aboustayyef\Previewer;

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

?>