breuls/tmdb-library
Composer 安装命令:
composer require breuls/tmdb-library
包简介
PHP wrapper classes for TMDB (TheMovieDatabase) API v3.
README 文档
README
PHP wrapper classes for TMDB (TheMovieDatabase) API v3.
Thanks to:
Calibrate (www.calibrate.be)
Requirements:
- PHP 5.3+
- Curl
- TMDB Api-key
Basic usage:
require_once('vendor/autoload.php'); $db = TMDB\Client::getInstance('<your api-key>'); $db->adult = true; // return adult content $db->paged = false; // merges all paged results into a single result automatically $title = 'The Matrix'; $year = '1999'; $results = $db->search('movie', array('query'=>$title, 'year'=>$year)); $movie = reset($results); $images = $movie->posters('300');
TMDB\Client contains the API wrapper for querying TMDB. Results are transformed into the helper objects automatically.
For example searching for 'movie' will result in a array of Movie objects.
More info will come soon.
Assets
Several objects are defined for the 'assets' TMDB uses. These include:
- Movie
- Person
- Company
- Collection
- Genre
You can create a new asset and have it filled in with information automatically by passing in the id in the constructor.
For example:
$movie = new Movie(10);
Will load a movie object with the info for a movie with tmdb id 10;
统计信息
- 总下载量: 1.52k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 1
- 点击次数: 2
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: Unknown
- 更新时间: 2013-09-23