pixelead0 / tmdb_v3-PHP-API-

Wrapper in PHP for The Movie Data Base version 3
119 stars 81 forks source link

Get Release Dates #46

Closed yordanoff closed 6 years ago

yordanoff commented 7 years ago

Hello! Is it possible to get the release dates for different countries like in this example?

bogdanfinn commented 7 years ago

Yyou should be able to get the releasedates by modifying your configuration and append ': $cnf['appender']['movie'] = array('trailers', 'images', 'credits', 'translations', 'reviews', 'release_dates');

After that you can access the data array by the get Method for a detailed movie object: $movie->get('release_dates')['results'];

I can add functionality to access the releasedates in another PR later.