如何使用Telegram Bot API插入用户数时解决错误

时间:2018-10-23 11:46:21

标签: php mysql telegram php-telegram-bot

当我以/ addchannel @username的身份向我的机器人发送消息时,它没有返回错误,但是通道订户数未插入我的数据库中

$ex = explode("/addchannel", $text);
$im = implode("", $ex);
     $content=file_get_contents("https://api.telegram.org/botxxxxx:yyyyyyyyyyy/getChatMembersCount?chat_id=".$im);
    $obj = json_decode($content, TRUE);
    $im = $obj['result'];
    bot('sendMessage',[
        'chat_id'=>$chat_id,
        'text'=>$im
      ]);
      if($text != in_array($text, $ex)){
   if($im > 1000){
        mysqli_query($db,"INSERT INTO channel(c_id,phone) VALUES('$im','0')");
        bot('sendMessage',[
            'chat_id'=>$chat_id,
            'text'=>'CHANNEL ADDED SUCCESFULLY'
          ]);
    }else{
           bot('sendMessage',[
             'chat_id'=>$chat_id,
             'text'=>'INVALID FORMAT'
           ]);
    }
}

0 个答案:

没有答案