我想从用户与我的机器人聊天时从用户那里获取userid和chatid,因为我需要该ID才能将查询发送到Sql并注册该用户,但我不知道该如何获取userid:(< / p>
$data = file_get_contents("php://input");
$update = json_decode($data,true);
$message = $update["message"];
$text = $message["text"];
$cid = $update["message"]["from"]["id"];
$from = $message["from"];
$username = $from["username"];
$nome = $from["first_name"];
$cognome = $form["last_name"];
$cbid = $update["callback_query"]["from"]["id"];
$cbdata = $update["callback_query"]["data"];
$chat_id = $message->chat->id;
$user_id = $message->from->id;
$user = $message->from->username;
此代码用于将UserID和ChatID发送到聊天
if($text == "Datos"){
$but = array(array(array("text" => "UserID", "callback_data" => "Info"),),);
inlineKeyboard($but, $cid, "Clicca uno di questi due pulsanti \nper andare su google o su facebook!");
}
if(callback($update)){
if($cbdata == "Info"){
send($cbid, "estos son los datos: $probando $user $userid $probando2");
}
}
答案 0 :(得分:0)
这不是我怎么确定的userid或chat_id,但是现在我需要将该信息用于代码的另一部分,但是当我再次调用$welcomemessage
时,userid的值为空。我该怎么办?
$userid = $message["from"]["id"];
$welcomemessage = "Este es tu id: $userid";
if ($text == '/hope') {
$welcomemessage;
// Send the generated message back to the Telegram user
file_get_contents($website."/sendmessage?chat_id=".$chatId."&text=".$welcomemessage);
}