禅道网站基于bing搜索引擎的站内搜索功能上线
转贴大家好,之前我们用的站内搜索是基于google的。但由于众所周知的原因,google的访问已无法正常使用,因此我们采用了bing的搜索api,搭建了我们的站内搜索引擎。希望大家可以喜欢。
简单的代码示例,抛砖引玉:
$query = urlencode("site:zentao.net $key"); // 将site:zentao.net 和关键词拼在一起,作为查询串,发送给bing。
$api = 'http://api.search.live.net/json.aspx?sources=web&web.count=50'; // web.count = 50,指定查询多少条记录。可以根据返回结果中的数量,做分页。
$api .= "&Appid={$this->config->bing->appID}"; // AppID是需要到bing网站申请一个。
$api .= "&query=$query";
$response = file_get_contents($api);
$results = json_decode($response);
if($results->SearchResponse->Web->Total == 0) return array();
return $results->SearchResponse->Web->Results;
效果图: