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

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

4

1 回答 1

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;
于 2013-10-23T19:14:07.400 回答