rpunnett/extract_imgur 问题修复 & 功能扩展

解决BUG、新增功能、兼容多环境部署,快速响应你的开发需求

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

rpunnett/extract_imgur

最新稳定版本:v1.2.0

Composer 安装命令:

composer require rpunnett/extract_imgur

包简介

A class to extract image links from imgur URLS in PHP

README 文档

README

extract_imgur is php class to pull out the actual image URL's from imgur links. It is based on the JS project 'impurge'.

Usage

use  Imgur\Imgur;

$url = 'http://imgur.com/4Bpn7iO'

#Checks if the link is from imgur, returns true false : TRUE
Imgur::valid($url); 

#Returns the ID of the image : 4Bpn7iO
Imgur::getId($url); 

#Returns the TYPE of the link -> Album, Gallery, Hash, Image : Image
Imgur::getType($url); 

#Returns an array of URLs based on requested type
Type Options:
* original
* imgur_page
* small_square
* large_thumbnail

Imgur::getImage($url,'original');
/* For a gallery
url		[3]
0   :   http://i.imgur.com/x3Opkpv.jpg
1   :   http://i.imgur.com/oXLVTyT.jpg
2   :	http://i.imgur.com/1cbsAEZ.jpg
--- For an image
url [1]
0   :	http://imgur.com/4Bpn7iO
*/

Version

0.65

Requirements

extract_imgur has the following requirements:

  • cURL - Reads interwebs
  • PHP - Version 5.*

Dev Requirements

Preferred Installation

Use Composer: https://packagist.org/packages/rpunnett/extract_imgur

Normal Installation

Copy to a project directory and include the namespace 'Imgur\Imgur'

git clone https://github.com/rpunnett/extract_imgur.git extract_imgur
cd extract_imgur-<version>
cp src <include path>

License

MIT

统计信息

  • 总下载量: 31
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 1
  • 点击次数: 0
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 1
  • Watchers: 1
  • Forks: 1
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2015-02-08