Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@juntao
Created January 26, 2016 19:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save juntao/25788f66a6a32b751af6 to your computer and use it in GitHub Desktop.
Save juntao/25788f66a6a32b751af6 to your computer and use it in GitHub Desktop.
<?php
$json_str = file_get_contents("http://www.omdbapi.com/?t=" . urlencode($_REQUEST["text"]) . "&y=&plot=short&r=json");
$json = json_decode($json_str, true);
echo "'" . $json['Title'] . "' " . $json['Year'] . ". Rating:" . $json['imdbRating'] . " IMDB: http://www.imdb.com/title/" . $json['imdbID'] . "/ Plot: " . $json['Plot'];
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment