微擎里面通过代码如何去触发关键字呢?
1个回答
2016-12-14 · 知道合伙人互联网行家
关注
展开全部
processor.php中
public function respond() {
$content = $this->message['content'];
//这里定义此模块进行消息处理时的具体过程
/*获取设置的投票规则和触发关键字*/
global $_W,$_GPC;
$uniacid=$_W['uniacid']
$id=$this->rule;
$keyword= pdo_fetch("SELECT * FROM " . tablename('rule_keyword') . " WHERE uniacid = :uniacid and rid=:rid", array(':uniacid' => $uniacid,'rid'=>$id));
if($content==$keyword['content']){
/*响应文本信息
return $this->respText('456');*/
/*响应图文消息 respNews*/
$news = array(
'title' => '测试',
'description' => $id,
'picurl' =>'测试',
'url' => $this->createMobileUrl('index'),
);
return $this->respNews($news);
}
}
public function respond() {
$content = $this->message['content'];
//这里定义此模块进行消息处理时的具体过程
/*获取设置的投票规则和触发关键字*/
global $_W,$_GPC;
$uniacid=$_W['uniacid']
$id=$this->rule;
$keyword= pdo_fetch("SELECT * FROM " . tablename('rule_keyword') . " WHERE uniacid = :uniacid and rid=:rid", array(':uniacid' => $uniacid,'rid'=>$id));
if($content==$keyword['content']){
/*响应文本信息
return $this->respText('456');*/
/*响应图文消息 respNews*/
$news = array(
'title' => '测试',
'description' => $id,
'picurl' =>'测试',
'url' => $this->createMobileUrl('index'),
);
return $this->respNews($news);
}
}
追问
流程是这样的:用户关注了之后就会调用processor.php里面去,然后我想通过processor.php里面写代码,然后再去触发关键字,比如:用户关注了,就会去processor.php里面,然后我在通过processor.php去触发关键字为:‘哈哈’的词,然后设定‘哈哈’关键字是向用户回馈一个‘你笑了’的文本消息。
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询