以前的小贱鸡的功能不能用了,所以现在更新一个出来代替了!大家换换就可以了哈!
<?php
//转载注明:http://yun.widuu.com
function simsim($keywords){
$curlPost=array("chat"=>$keywords);
$ch = curl_init();//初始化curl
curl_setopt($ch,CURLOPT_URL,'http://www.xiaojo.com/bot/chata.php');//抓取指定网页
curl_setopt ($ch, CURLOPT_HTTPHEADER, $header);
curl_setopt($ch, CURLOPT_HEADER, 0);//设置header
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);//要求结果为字符串且输出到屏幕上
curl_setopt($ch, CURLOPT_POST, 1);//post提交方式
curl_setopt($ch, CURLOPT_POSTFIELDS, $curlPost);
$data = curl_exec($ch);//运行curl
curl_close($ch);
if(empty($data)){
$data = "我也不知道该怎么回答你";
}
return $data;
}
echo simsim("什么呀");

发表评论 取消回复