首頁 >php教程 >PHP源码 >小黄鸡simsimi接口

小黄鸡simsimi接口

PHP中文网
PHP中文网原創
2016-05-25 17:00:091915瀏覽

                       

1. [代码][PHP]代码    

           

<?php
function simsimi($keyword) {
	$keyword = urlencode(urlencode($keyword));
	//----------- 获取COOKIE ----------//
	$url = "http://www.simsimi.com/";
	$ch = curl_init($url);
	curl_setopt($ch, CURLOPT_HEADER,1);
	curl_setopt($ch, CURLOPT_RETURNTRANSFER,1);
	$content = curl_exec($ch);
	list($header, $body) = explode("\r\n\r\n", $content);
	preg_match("/set\-cookie:([^\r\n]*);/iU", $header, $matches);
	$cookie = $matches[1];
	curl_close($ch);

	//----------- 抓 取 回 复 ----------//
	$url = "http://www.simsimi.com/func/req?lc=ch&msg=$keyword&ft=0.0";
	$ch = curl_init($url);
	curl_setopt($ch, CURLOPT_REFERER, "http://www.simsimi.com/talk.htm?lc=ch");
	curl_setopt($ch, CURLOPT_RETURNTRANSFER,1);
	curl_setopt($ch, CURLOPT_COOKIE, $cookie);
	$content = json_decode(curl_exec($ch),1);
	curl_close($ch);

	if($content[&#39;result&#39;]==&#39;100&#39;) {
		$content[&#39;response&#39;];
		return $content[&#39;response&#39;];
	} else {
		return &#39;我还不会回答这个问题...&#39;;
	}
}
?>

                   

                   

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn