SimpleXML无法使用Yahoo Answers

时间:2013-10-23 19:10:38

标签: php simplexml yahoo

$bot = file_get_contents("http://answers.yahooapis.com/AnswersService/V1/questionSearch?appid=API_KEY&query=".$q1."");
echo $bot->Question[0]->ChosenAnswer;

出于某种原因,脚本没有返回任何内容。

1 个答案:

答案 0 :(得分:1)

首先,您需要创建SimpleXML实例才能使用它。

$bot = file_get_contents("http://answers.yahooapis.com/AnswersService/V1/questionSearch?appid=API_KEY&query=".$q1."");
$bot = simplexml_load_string($bot);
echo $bot->Question[0]->ChosenAnswer;