欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

php版小黃雞simsimi聊天機(jī)器人接口分享

 更新時(shí)間:2014年01月26日 09:31:36   作者:  
小黃雞SimSimi是一個(gè)可愛的智能聊天機(jī)器人,他能和用戶進(jìn)行有趣的對(duì)話,本文主要介紹了php版小黃雞simsimi接口使用的示例,大家參考使用吧

復(fù)制代碼 代碼如下:

<?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);

 //----------- 抓 取 回 復(fù) ----------//
 $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 '我還不會(huì)回答這個(gè)問題...';
 }
}
?>

相關(guān)文章

最新評(píng)論