client->showSummary((string)$argv[1]); // Use the first show found (highest match) and get the requested season/episode from $argv if (is_array($series)) { $ep = $trakt->client->episodeSummary((int)$series['ids']['trakt'], $season, $episode, 'full'); print_r($series); print_r($ep); } else { exit($c->error("Error retrieving Trakt data.")); } } else { exit($c->error("Invalid arguments. This script requires a text string (show name) followed by a season and episode number.")); }