如何增加雅虎相关建议php的返回大小

时间:2011-02-21 10:38:49

标签: php api yahoo

我有这个代码,它将使用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个关键字建议。 非常感谢。

1 个答案:

答案 0 :(得分:0)

阅读文档http://developer.yahoo.com/search/web/V1/relatedSuggestion.html

它在一个月内关闭,为什么现在费心去使用它。