2017 © Pedro Peláez
 

library omdbapi

image

aharen/omdbapi

  • Saturday, March 3, 2018
  • by aharen
  • Repository
  • 1 Watchers
  • 8 Stars
  • 4,990 Installations
  • PHP
  • 1 Dependents
  • 0 Suggesters
  • 4 Forks
  • 0 Open issues
  • 11 Versions
  • 13 % Grown

The README.md

OMDbAPI

PHP class to communicate with OMDbAPI.com API by Brian Fritz, (*1)

How to Use

Include the file, (*2)

composer require aharen/omdbapi

Or update your composer.json file accordingly, (*3)

require {
    "aharen/omdbapi" : "2.0.*"
}

Initiating

Since the API will be going private (read about it) & would be requiring the API key, a small change has been made to how the API will be initiated and how the Poster API will be used., (*4)

use aharen\OMDbAPI();

$omdb = new OMDbAPI($api_key, $image_host, $assoc);

The first parameter will be the API Key, the secound is the host to use (false = omdbapi, true = poster api, false by default) & third is assoc (true = assoc on, false = assoc off, false by default), (*5)

Search OMDb API

Requires search keyword and accepts type (movie, series or episode) & year, (*6)

use aharen\OMDbAPI;

$omdb = new OMDbAPI();

$omdb->search($keyword, $type, $year);

Example usage, (*7)

$omdb->search('spider');

Output, (*8)

stdClass Object
(
    [code] => 200
    [message] => OK
    [data] => stdClass Object
        (
            [0] => stdClass Object
                (
                    [Title] => Spider-Man
                    [Year] => 2002
                    [imdbID] => tt0145487
                    [Type] => movie
                )

            [1] => stdClass Object
                (
                    [Title] => The Amazing Spider-Man
                    [Year] => 2012
                    [imdbID] => tt0948470
                    [Type] => movie
                )

            [2] => stdClass Object
                (
                    [Title] => Spider-Man 2
                    [Year] => 2004
                    [imdbID] => tt0316654
                    [Type] => movie
                )

            [3] => stdClass Object
                (
                    [Title] => Spider-Man 3
                    [Year] => 2007
                    [imdbID] => tt0413300
                    [Type] => movie
                )

            [4] => stdClass Object
                (
                    [Title] => The Amazing Spider-Man 2
                    [Year] => 2014
                    [imdbID] => tt1872181
                    [Type] => movie
                )

            [5] => stdClass Object
                (
                    [Title] => Along Came a Spider
                    [Year] => 2001
                    [imdbID] => tt0164334
                    [Type] => movie
                )

            [6] => stdClass Object
                (
                    [Title] => Spider
                    [Year] => 2002
                    [imdbID] => tt0278731
                    [Type] => movie
                )

            [7] => stdClass Object
                (
                    [Title] => Spider-Man
                    [Year] => 1994–1998
                    [imdbID] => tt0112175
                    [Type] => series
                )

            [8] => stdClass Object
                (
                    [Title] => Kiss of the Spider Woman
                    [Year] => 1985
                    [imdbID] => tt0089424
                    [Type] => movie
                )

            [9] => stdClass Object
                (
                    [Title] => The Spectacular Spider-Man
                    [Year] => 2008–2009
                    [imdbID] => tt0976192
                    [Type] => series
                )

        )

)

Usage examples, (*9)

// search for all 'series' that contain 'spider' in the title
$omdb->search('spider', 'series');

// search for all 'series' that contain 'spider' in the title and is from '2014'
$omdb->search('spider', 'series', '2014');

Associative mode

You can also use this library in associative mode, resulting in arrays instead of stdClass instances, passing the second constructor argument to true:, (*10)

// Associative mode (results will be associative arrays)
$omdb = new OMDbAPI(null, true);

Fetch movie details

Fetch details of a movie, series or episode. details can be fetched by either IMDB ID or the Title, (*11)

Usage example, (*12)

// get details for IMDB ID 'tt0338013'
$omdb->fetch('i', 'tt0338013');

// get details for title 'eternal sunshine'
$omdb->fetch('t', 'eternal sunshine');

Output for both of the above queires, (*13)

stdClass Object
(
    [code] => 200
    [message] => OK
    [data] => stdClass Object
        (
            [Title] => Eternal Sunshine of the Spotless Mind
            [Year] => 2004
            [Rated] => R
            [Released] => 19 Mar 2004
            [Runtime] => 108 min
            [Genre] => Drama, Romance, Sci-Fi
            [Director] => Michel Gondry
            [Writer] => Charlie Kaufman (story), Michel Gondry (story), Pierre Bismuth (story), Charlie Kaufman (screenplay)
            [Actors] => Jim Carrey, Kate Winslet, Gerry Robert Byrne, Elijah Wood
            [Plot] => When their relationship turns sour, a couple undergoes a procedure to have each other erased from their memories. But it is only through the process of loss that they discover what they had to begin with.
            [Language] => English
            [Country] => USA
            [Awards] => Won 1 Oscar. Another 64 wins & 62 nominations.
            [Poster] => http://ia.media-imdb.com/images/M/MV5BMTY4NzcwODg3Nl5BMl5BanBnXkFtZTcwNTEwOTMyMw@@._V1_SX300.jpg
            [Metascore] => 89
            [imdbRating] => 8.4
            [imdbVotes] => 533,088
            [imdbID] => tt0338013
            [Type] => movie
            [Response] => True
        )

)

Fetching episodes details

You can also use the fetch third parameter to add extra parameters, for instance:, (*14)

//                 Dexter (TV show)
$omdb->fetch('i', 'tt0773262', ['Season' => 1])

This will add the Season=1 parameter, (*15)

Credits

Unit Tests & Associative Mode by @Gregwar (Cheers), (*16)

The Versions

03/03 2018

v0.1

0.1.0.0

  Sources   Download

19/05 2017

dev-master

9999999-dev

PHP package for OMDbAPI.com by Brian Fritz

  Sources   Download

MIT

The Requires

 

by Ahmed Khusaam

movies tv shows omdb api

19/05 2017

v2.0.8

2.0.8.0

PHP package for OMDbAPI.com by Brian Fritz

  Sources   Download

MIT

The Requires

 

by Ahmed Khusaam

movies tv shows omdb api

19/05 2017

v2.0.7

2.0.7.0

PHP package for OMDbAPI.com by Brian Fritz

  Sources   Download

MIT

The Requires

 

by Ahmed Khusaam

movies tv shows omdb api

15/05 2017

v2.0.6

2.0.6.0

PHP package for OMDbAPI.com by Brian Fritz

  Sources   Download

MIT

The Requires

 

by Ahmed Khusaam

movies tv shows omdb api

20/02 2017

v2.0.5

2.0.5.0

PHP package for OMDbAPI.com by Brian Fritz

  Sources   Download

MIT

The Requires

 

by Ahmed Khusaam

movies tv shows omdb api

13/12 2016

v2.0.4

2.0.4.0

PHP package for OMDbAPI.com by Brian Fritz

  Sources   Download

MIT

The Requires

 

by Ahmed Khusaam

movies tv shows omdb api

07/11 2016

v2.0.3

2.0.3.0

PHP package for OMDbAPI.com by Brian Fritz

  Sources   Download

MIT

The Requires

 

by Ahmed Khusaam

movies tv shows omdb api

22/10 2016

v2.0.2

2.0.2.0

PHP package for OMDbAPI.com by Brian Fritz

  Sources   Download

MIT

The Requires

 

by Ahmed Khusaam

movies tv shows omdb api

22/10 2016

v2.0.1

2.0.1.0

PHP package for OMDbAPI.com by Brian Fritz

  Sources   Download

MIT

The Requires

 

by Ahmed Khusaam

movies tv shows omdb api

22/10 2016

v2

2.0.0.0

PHP package for OMDbAPI.com by Brian Fritz

  Sources   Download

MIT

The Requires

  • php >=5.5.0

 

by Ahmed Khusaam

movies tv shows omdb api