Created
April 20, 2017 07:14
-
-
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
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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