如何使用PHP在TelegramBot中发送随机照片?

时间:2019-03-30 21:16:07

标签: php telegram telegram-bot php-telegram-bot

我想在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,
    ]);
}

1 个答案:

答案 0 :(得分:0)

您可能会丢失:

  • 图像之前的基本域,例如:'20000'

  • domain.org/data/pictures/pic1.jpg中的file索引

    $random_image