我有这个代码,它将使用api从yahoo返回关键字建议。
function suggestion($keyword,$keyid){
$search_key= str_replace(' ','+',$keyword);
$app ="D4FRJzjeHUCoJsYIeYV4E6XFUlJpX.o1TWALuI-";
$search = "http://search.yahooapis.com/WebSearchService/V1/relatedSuggestion?appid=".$app."&query=".$search_key."&output=json";
$content= file_get_contents($search);
$json = json_decode($content);
foreach($json->ResultSet->Result as $string){
//insert to database
echo $string."<br />";
}
}
但它只返回4个关键字建议。 我尝试在搜索中添加&amp; results = 30,但没有运气它仍然只返回4个关键字建议。 非常感谢。
答案 0 :(得分:0)
阅读文档http://developer.yahoo.com/search/web/V1/relatedSuggestion.html
它在一个月内关闭,为什么现在费心去使用它。