"H" 信件未发送至电报机器人
"H" letter is not sending to telegram bot
有史以来最奇怪的问题
我正在尝试在 php.
上创建 Telegram 机器人
当我试图发送给电报机器人“H”(H 字母前有 space,大写)时,它不起作用!未收到消息。
$text = ' H';
file_get_contents($website."/sendMessage?chat_id=".$chatId."&text=".$text);
只有'H'时结束(没有space)。有效。
发生什么事了?
您需要对 url 中的文本进行转义:
file_get_contents($website."/sendMessage?chat_id=".$chatId."&text=".urlencode($text));
有史以来最奇怪的问题 我正在尝试在 php.
上创建 Telegram 机器人当我试图发送给电报机器人“H”(H 字母前有 space,大写)时,它不起作用!未收到消息。
$text = ' H';
file_get_contents($website."/sendMessage?chat_id=".$chatId."&text=".$text);
只有'H'时结束(没有space)。有效。
发生什么事了?
您需要对 url 中的文本进行转义:
file_get_contents($website."/sendMessage?chat_id=".$chatId."&text=".urlencode($text));