Api
Api copied to clipboard
Object of class TelegramBot\Api\Types\Inline\InlineKeyboardMarkup could not be converted to int
i only try a test
I some question , i need help
lost a param $bot->sendmessage($chatId,$messageText, null, false, null, null,$keyboard)
I some question , i need help
add a null in front of $keyboard
@amu1433 Sorry for the late reply, did you solve your problem?
For php ^8.0 you can use named arguments:
$api->sendMessage(
chatId: $update->getMessage()->getChat()->getId(),
text: $text,
replyMarkup: new InlineKeyboardMarkup(/**/),
);