You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

40 lines
1007 B

<?php
/**
* This file is part of the Tmdb PHP API created by Michael Roterman.
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*
* @package Tmdb
* @author Michael Roterman <michael@wtfz.net>
* @copyright (c) 2013, Michael Roterman
* @version 0.0.1
*/
header('Content-Type: text/html; charset=utf-8');
use Tmdb\Repository\MovieRepository;
use Tmdb\Exception\TmdbApiException;
require_once '../vendor/autoload.php';
require_once '../apikey.php';
$token = new \Tmdb\ApiToken(TMDB_API_KEY);
$client = new \Tmdb\Client($token);
$repository = new MovieRepository($client);
/**
* @var \Tmdb\Model\Movie $movie
*/
try {
$movie = $repository->load(298312000);
} catch (TmdbApiException $e) {
if (TmdbApiException::STATUS_RESOURCE_NOT_FOUND == $e->getCode()) {
// not found
echo '404';exit;
}
// catch other tmdb specific errors
} catch (Exception $e) {
// catch any other errors
}