duck7000 / imdbGraphQLPHP

5 stars 0 forks source link

imdbGraphQLPHP

PHP library for retrieving film and TV information from IMDb.
This library uses GraphQL API from imdb to get the data.
Thanks to @tBoothman for his groundwork to make this possible!

imdbGraphQLPHP is NOT a fork, it is based on imdbphp
Retrieve all information from IMDb including films, TV series, TV episodes, people and coming soon releases.
Search for titles on IMDb.
Download film posters, actor, recommendations, foto's and episode images.
The results can be localized and cached.
Localization only seems to effect title, photo, plotoutline and recommendations (titles only). Check wiki homepage to enable.
There is a full list of all methods, descriptions and outputs in the wiki. https://github.com/duck7000/imdbGraphQLPHP/wiki

Quick Start

For Title search:

$imdb = new \Imdb\TitleSearch();
$results = $imdb->search("1408", "MOVIE,TV", "1955-01-01", "2000-01-01");
All info is in the wiki page

For Advanced title search:

$imdb = new \Imdb\TitleSearchAdvanced();
$results = $imdb->advancedSearch($searchTerm, $genres, $types, $creditId, $startDate, $endDate, $countryId, $languageId);
All info is in the wiki page

For Titles:

$title = new \Imdb\Title("335266");
$rating = $title->rating();
$plotOutline = $title->plotoutline();

For Name search:

$imdb = new \Imdb\NameSearch();
$results = $imdb->search("Peter Fonda");

For Names:

$name = new \Imdb\Name("0000154");
$name = $name->name();
$nickname = $name->nickname();

For Calendar:

$calendar = new \Imdb\Calendar();
$releases = $calendar->comingSoon();

Installation

Download the latest version or latest git version and extract it to your webserver. Use one of the above methods to get some results

Get the files with one of:

Requirements