Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
$bot = file_get_contents("http://answers.yahooapis.com/AnswersService/V1/questionSearch?appid=API_KEY&query=".$q1.""); echo $bot->Question[0]->ChosenAnswer;
出于某种原因,脚本没有返回任何内容。
首先,您需要创建 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;