当我以/ 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'
]);
}
}