Skip to content

Instantly share code, notes, and snippets.

@dovidezra
Created April 20, 2017 07:14
Show Gist options
  • Save dovidezra/4a86a872d72db398d29774a0d97cf746 to your computer and use it in GitHub Desktop.
Save dovidezra/4a86a872d72db398d29774a0d97cf746 to your computer and use it in GitHub Desktop.
function to fetch description of a keyword from wikipedia. http://stackoverflow.com/a/13132388
function getDescription($keyword){
$url='http://lookup.dbpedia.org/api/search.asmx/KeywordSearch?QueryString='.urlencode($keyword).'&MaxHits=1';
$xml=simplexml_load_file($url);
return $xml->Result->Description;
}
echo getDescription('agra');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment