我想在TelegramBot中发送随机照片,我编写了此代码,但是它不起作用。我该如何解决这个问题?
$pictures = [
[
"file"=>"data/pictures/pic1.jpg",
],
[
"file"=>"data/pictures/pic2.jpg",
]
];
$random_image = $pictures[rand(0, count($pictures) - 1)];
if ($text == "pictest"){
Bot('SendPhoto',[
'chat_id' => $chat_id,
'photo' => $random_image,
]);
}
答案 0 :(得分:0)
您可能会丢失:
图像之前的基本域,例如:'20000'
或domain.org/data/pictures/pic1.jpg
中的file
索引
$random_image