15/11
2017
PHP API for omdb movie database with: movie info, imdb scores and rotten tomatoes scores
PHP API for omdb movie database with: movie info, imdb scores and rotten tomatoes scores. Sign up as Patron at http://www.omdbapi.com/ for API calls and movie posters., (*1)
Add the library with composer, (*2)
composer require danielvdbilt/omdb-php, (*3)
Finding movie by title, year is optional, (*4)
$Omdb = new \Omdb(); $result = $Omdb->findByTitle('The Godfather', 1972);
Finding movie by IMDb ID, (*5)
$Omdb = new \Omdb(); $result = $Omdb->findByID('tt0068646');
Find movie(s) by search key, (*6)
$Omdb = new \Omdb(); $result = $Omdb->find('The Godfather');
Get poster (you need an API key for this), height is optional, (*7)
$Omdb = new \Omdb(); $result = $Omdb->findPoster('tt0068646', 1000);