我在我的 .php 文件中编写了这段代码,我在其中设置了运行良好的 webHook。
$token = "my token";
$website = "https://api.telegram.org/bot" . $token . "/";
$updates = file_get_contents("php://input");
$updates = json_decode($updates, true);
$text = $updates["message"]["text"];
$chatID = $updates["message"]["chat"]["id"];
switch($text){
case "/prova_gratuita":
if(check($chatID)){
sendMessage($chatID, "Are you sure? Demo is available only one time. Write confirm to continue");
switch($text){
case "confirm":
...
break;
}
}
二switch()
是不行。为什么?我能做些什么?我知道我应该更新 的值$text
,但我不知道该怎么做