PHP头条
热点:

php版小黄鸡simsimi聊天机器人接口分享


复制代码 代码如下:
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['result']=='100') {
  $content['response'];
  return $content['response'];
 } else {
  return '我还不会回答这个问题...';
 }
}
?>

内容推荐:免费高清PNG素材下载

www.phpzy.comtrue/phpzx/47154.htmlTechArticlephp版小黄鸡simsimi聊天机器人接口分享 复制代码 代码如下: function simsimi($keyword) { $keyword = urlencode(urlencode($keyword)); //----------- 获取COOKIE ----------// $url = "http://www.simsimi.com/"; $ch = curl_init($...

相关文章

PHP之友评论

今天推荐