其实我想从谷歌及其答案中搜索问题 例如
问题
占星术的定义是什么。 答案
研究天体的运动和相对位置被解释为对人类事务和自然界产生影响。 就像我想从这个api那样 怎么可能 $search_query = $this->input->post('search');
$url ="https://www.googleapis.com/customsearch/v1?key=AIzaSyD7Ho22AiuqaieQmg1GyMP9HxvID0V0VWg&cx=003432080158696714251:n4rbif5gizk&q='$search_query'";
答案 0 :(得分:0)
以下是示例代码。
$json = file_get_contents($url);
$results = json_decode($json);
if ($results->searchInformation->totalResults) {
$resutItems = $results->items;
// do whatever with the result
}